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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
07/06/12 14:28
Read: times


 
#187869 - multiple asm files in a 8051 project using keil
Responding to: ???'s previous message
For example:

code is:

;;;;;;;;;;;;;;;;;;;;;;;;;;
ORG 00h

RESET:

CALL TOGGLE_LED

SJMP RESET


TOGGLE_LED:
CPL P1.0
RET

END
;;;;;;;;;;;;;;;;;;;;;;;;;;

And i want to put the function "TOGGLE_LED" routing
i.e. the part:

TOGGLE_LED:
CPL P1.0
RET

into a separate .asm source file. So how can it be done?

Thanks.

List of 8 messages in thread
TopicAuthorDate
multiple asm files in a 8051 project using keil            01/01/70 00:00      
   multiple asm files in a 8051 project using keil            01/01/70 00:00      
      read up on            01/01/70 00:00      
         Read-up on...            01/01/70 00:00      
   $include should work             01/01/70 00:00      
      should work, but...            01/01/70 00:00      
         Single assembly is not unreasonable            01/01/70 00:00      
   Keil example            01/01/70 00:00      

Back to Subject List