RE: [Mspgcc-users] assembler interrupts

2003-02-25 Thread Carl Kopin
-users] assembler interrupts Another way to see the examples without the need of "cvs co" is http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/mspgcc/ > Dear, > What exactly is the "examples/timerA_uart/swuart.s"? Where are they? > Forgive me the stupid question, but

RE: [Mspgcc-users] assembler interrupts

2003-02-25 Thread Mark Stokes
, 2003 7:31 PM To: mspgcc-users@lists.sourceforge.net Subject: RE: [Mspgcc-users] assembler interrupts Hi, Out of interest, is the wakeup attribute meaningless if the function is specified as naked? I know, I could check this myself by inspecting the compiled assembler but thought I'd ask 1

Re: [Mspgcc-users] assembler interrupts

2003-02-25 Thread Pedro Zorzenon Neto
Another way to see the examples without the need of "cvs co" is http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/mspgcc/ > Dear, > What exactly is the "examples/timerA_uart/swuart.s"? Where are they? > Forgive me the stupid question, but I am newcomer knowing nothing. > Can you give me a hand? > T

RE: [Mspgcc-users] assembler interrupts

2003-02-24 Thread Luke Hoffmann
tokes [mailto:m.sto...@ieee.org] Sent: Tuesday, 25 February 2003 5:08 AM To: mspgcc-users@lists.sourceforge.net Subject: RE: [Mspgcc-users] assembler interrupts You can do it in C... The compiler will do nothing automatically (because of the naked property), so you can do whatever you want w

RE: [Mspgcc-users] assembler interrupts

2003-02-24 Thread Thomas W. Carley
: mspgcc-users-ad...@lists.sourceforge.net [mailto:mspgcc-users-ad...@lists.sourceforge.net] On Behalf Of Carl Kopin Sent: Monday, February 24, 2003 4:51 PM To: mspgcc-users@lists.sourceforge.net Subject: RE: [Mspgcc-users] assembler interrupts Dear, What exactly is the "examples/timerA_uart/swu

RE: [Mspgcc-users] assembler interrupts

2003-02-24 Thread Carl Kopin
c-users-ad...@lists.sourceforge.net]on Behalf Of Thomas W. Carley Sent: Monday, 24 February 2003 14:24 To: mspgcc-users@lists.sourceforge.net Subject: RE: [Mspgcc-users] assembler interrupts Exactly what I needed ... thank you :) -Original Message- From: mspgcc-users-ad...@lists.sourc

RE: [Mspgcc-users] assembler interrupts

2003-02-24 Thread Thomas W. Carley
Exactly what I needed ... thank you :) -Original Message- From: mspgcc-users-ad...@lists.sourceforge.net [mailto:mspgcc-users-ad...@lists.sourceforge.net] On Behalf Of Chris Liechti Sent: Monday, February 24, 2003 4:10 PM To: mspgcc-users@lists.sourceforge.net Subject: Re: [Mspgcc-users

RE: [Mspgcc-users] assembler interrupts

2003-02-24 Thread Thomas W. Carley
Stokes Sent: Monday, February 24, 2003 4:08 PM To: mspgcc-users@lists.sourceforge.net Subject: RE: [Mspgcc-users] assembler interrupts You can do it in C... The compiler will do nothing automatically (because of the naked property), so you can do whatever you want w/ the registers in __asm__

Re: [Mspgcc-users] assembler interrupts

2003-02-24 Thread Chris Liechti
Am 24.02.2003 21:44:26, schrieb "Thomas W. Carley" : >How can I specify that an assembler function is a particular interrupt >handler. In other words, how to I set the vector table entry in assembler. I >would like to make a timer A interrupt handler in assembly. I have done it >in C, but need mor

RE: [Mspgcc-users] assembler interrupts

2003-02-24 Thread Mark Stokes
You can do it in C... The compiler will do nothing automatically (because of the naked property), so you can do whatever you want w/ the registers in __asm__ statements. And the vector table is set. Check section "6. Interrupt API" here: http://mspgcc.sourceforge.net/doc_intro.html Here's a quick