diff options
Diffstat (limited to 'src/arch/i386/init/bootblock.c')
-rw-r--r-- | src/arch/i386/init/bootblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/init/bootblock.c b/src/arch/i386/init/bootblock.c index 112a1953e3..86a5c5b136 100644 --- a/src/arch/i386/init/bootblock.c +++ b/src/arch/i386/init/bootblock.c @@ -29,7 +29,7 @@ static unsigned long findstage(char* target) static void call(unsigned long addr, unsigned long bist) { - asm volatile ("jmp %0\n\t" : : "r" (addr), "a" (bist)); + asm volatile ("jmp *%0\n\t" : : "r" (addr), "a" (bist)); } static void main(unsigned long bist) |