| ??? 09/06/11 17:02 Read: times |
#183636 - Linking C programs with Keil evaluation |
When you link a C program you effectively get a very big GAP:
...insert code here
ORG 0
LJMP C_INIT
LJMP interrupt_1
...
LJMP interrupt_2
...
...
LJMP interrupt_7
... ;big GAP filled with 0 0 0 ...
ORG 0x0800
; C object modules all start from 0x0800
...
How can you persuade the linker to load the C modules immediately after the interrupt vectors? Or is this a feature of the Evaluation linker? David. |



