mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
cpu/zynq7000: add boot helper
This commit is contained in:
parent
e9aa747d2b
commit
682e4e0b7d
2 changed files with 5 additions and 3 deletions
|
@ -1,3 +0,0 @@
|
|||
.global boot_helper
|
||||
boot_helper:
|
||||
nop // FIXME
|
5
litex/soc/cores/cpu/zynq7000/boot-helper.c
Normal file
5
litex/soc/cores/cpu/zynq7000/boot-helper.c
Normal file
|
@ -0,0 +1,5 @@
|
|||
void boot_helper(unsigned long r1, unsigned long r2, unsigned long r3, unsigned long addr);
|
||||
|
||||
void boot_helper(unsigned long r1, unsigned long r2, unsigned long r3, unsigned long addr) {
|
||||
goto *addr;
|
||||
}
|
Loading…
Reference in a new issue