mirror of
https://github.com/lcbcFoo/ReonV.git
synced 2025-04-18 18:44:43 -04:00
10 lines
108 B
ArmAsm
10 lines
108 B
ArmAsm
.file "boot_code.S"
|
|
.equ RAMSTART, 0x40000000
|
|
|
|
.text
|
|
.org 0x0
|
|
|
|
__boot_code:
|
|
li a5,RAMSTART
|
|
jalr a5
|
|
nop
|