Initial commit.
This commit is contained in:
BIN
bootrom/e300artydevkit.img
Executable file
BIN
bootrom/e300artydevkit.img
Executable file
Binary file not shown.
BIN
bootrom/u500vc707devkit.img
Executable file
BIN
bootrom/u500vc707devkit.img
Executable file
Binary file not shown.
26
bootrom/xip/xip.S
Normal file
26
bootrom/xip/xip.S
Normal file
@ -0,0 +1,26 @@
|
||||
// See LICENSE for license details.
|
||||
// Execute in place
|
||||
// Jump directly to XIP_TARGET_ADDR
|
||||
|
||||
.text
|
||||
.option norvc
|
||||
.globl _start
|
||||
_start:
|
||||
j 1f
|
||||
nop
|
||||
nop
|
||||
#ifdef CONFIG_STRING
|
||||
.word cfg_string
|
||||
#else
|
||||
.word 0 // Filled in by GenerateBootROM in Chisel
|
||||
#endif
|
||||
|
||||
1:
|
||||
li t0, XIP_TARGET_ADDR
|
||||
jr t0
|
||||
|
||||
.section .rodata
|
||||
#ifdef CONFIG_STRING
|
||||
cfg_string:
|
||||
.incbin CONFIG_STRING
|
||||
#endif
|
Reference in New Issue
Block a user