Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
09/05/00 21:19
Read: times


 
#4903 - Writing Interrupt Handler in Assembly
All of my code for the 8051 is written in C. However, I wish to re-write one of my Interrupt Handlers in Assembly language and have it interface with the rest of my program. Given the following C code, how do I convert it? I do not want to compile into an SRC file and then modify, I wish to simply do the whole routine in an assembly file.

void Ext0ISR(void) interrupt 0
{
byte value;

// double checking...
if (EXT0_PIN == 0)
{
value = MOD1_GetByte();
CLK_PIN = 0;
MOD2_SendByte( value );
CLK = 1;
}
}



List of 2 messages in thread
TopicAuthorDate
Writing Interrupt Handler in Assembly            01/01/70 00:00      
RE: Writing Interrupt Handler in Assembly            01/01/70 00:00      

Back to Subject List