Hello everyone,
On my MSP430F149 C project I am trying to place a small ASM code ("br #__c_int00") at a specific flash location (0x1600). How this can be acomplished in CCS 5.3?
I did something similar using Imagecraft ICC430, where I had to create a .s file and just add an .org directive. Something like this:
.area jmp_to_main_kernel_asm(abs)
.org 0x1600
br #__start
where "_start" was the init routine defined by Imagecraft compiler.
Is there a specific #pragma I could use to accomplish the same result in CCS?
Regards,
Calin