??? 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. |
Topic | Author | Date |
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 |