mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
cores/zynqmp: Fix boot helper
This commit is contained in:
parent
c58f46bb79
commit
54f466772b
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +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;
|
||||
goto *(void*)addr;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue