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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
03/12/05 14:39
Read: times


 
Msg Score: +1
 +1 Good Answer/Helpful
#89539 - This is a Job for Assembly Language
Responding to: ???'s previous message
This is a job for assembly language. So you must keep it this way. In specific the Keil tools in C if they see a function with the "interrupt" keyword will take steps to auto generate the interrupt vector to the function. If you tried to make two C interrupt functions to be dispatched from the same interrupt vector you will then get a complaint from the linker that you are trying to put two sets of code at the same memory address (the linker may call this a memory overlay or conflict error).

To manage the interrupt vector table yourself you must do it yourself in ASSEMBLER. I had to do just this thing in this boot loader.

Michael Karas


List of 9 messages in thread
TopicAuthorDate
using jump in C language            01/01/70 00:00      
   This is a Job for Assembly Language            01/01/70 00:00      
      I couldn't reach the file            01/01/70 00:00      
         It shows here !!            01/01/70 00:00      
            File accessible            01/01/70 00:00      
   Solution            01/01/70 00:00      
      Uh-oh!!!            01/01/70 00:00      
         Exactl Right            01/01/70 00:00      
            !!!            01/01/70 00:00      

Back to Subject List