1234567891011121314151617181920212223242526272829303132333435 |
- ; Test program to verify the copy to SDRAM and jump functionality of the ROM bootloader
- Main:
- CopyCode:
- addr2reg CodeToCopy r1 ; r1 = (src) address of the code to copy, stored in ROM
- load 0 r2 ; r2 = (dst) address 0 of SDRAM: 0x00, and loop var
- load 16 r4 ; r4 = number of words to copy
- CopyStartLoop:
- ; copy ROM to SDRAM
- read 0 r1 r15
- write 0 r2 r15
- add r1 1 r1 ; incr ROM address
- add r2 1 r2 ; incr SDRAM address
- beq r2 r4 2 ; copy is done when SDRAM address == number of words to copy at the start
- jump CopyStartLoop ; copy is not done yet, copy next address
- jump 0 ; jump to sdram
- CodeToCopy:
- .dw 0b00011100000000000000010100010001 ;Set r1 to 5 //27
- .dw 0b00011100000000000000001000100010 ;Set r2 to 2 //28 [Done, -> int]
- .dw 0b00000011000000000000000100100011 ;Compute r1 + r2 and write result to r3 //29
- .dw 0b00000011000000000000001100100011 ;Compute r3 + r2 and write result to r3 //2A
- .dw 0b11111111111111111111111111111111 ; Halt
- .dw 6 7 8 9 10 11 12 13 14 15 16
- Int:
- readintid r1
- reti
|