Hi,
I recently started to use PICBASIC PRO, and trying to write a code which will simply light a led. While using bootloader I recognized that I need to allocate some free space for firmware. How can I do this in PICBASIC? In CCS C, it is possible to write such a code like this.
#build (reset=0x800)
#build (interrupt=0x808)
#org 0x0000, 0x07ff
void bootloader () {
#asm
nop
#endasm
}
Bookmarks