How this function work ? I Try
DEFINE LOADER_USED 1
start:
high portb.7
pauseus 1
low portb.7
goto start
And I got
Ad0x00 GOTO 0x32
Ad0x02 nop
Ad0x04 nop
Ad0x06 nop
Ad0x08 CLRF 0x1, ACCESS 'start of the pauseus 1
to
Ad0x30 RETURN 0'end of the pauseus 1
Ad0x32 BSF 0xf81, 0x7, ACCESS 'main prog
And without DEFINE LOADER_USED 1
the loop pauseus start at 0x04
How can I use it with my bootload which start at 0x00 at finish at 0x1ff ?
How can I redirect the pause or pauseus subroutine to another address?
Bookmarks