mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Merge pull request #1724 from stone3311/master
cores/zynqmp: Fix boot helper
This commit is contained in:
commit
ec43ca77ed
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