From: Tim 'mithro' Ansell Date: Tue, 26 Sep 2017 04:54:16 +0000 (+1000) Subject: bios: Print location jumping too. X-Git-Tag: 24jan2021_ls180~1802^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=279ec488e3608da644f3e080ca10153d3a96f5ab;p=litex.git bios: Print location jumping too. Makes it easier to understand what is happening (and that the BIOS is jumping to the right place). --- diff --git a/litex/soc/software/bios/boot.c b/litex/soc/software/bios/boot.c index e0ff8ba9..ed7d3cba 100644 --- a/litex/soc/software/bios/boot.c +++ b/litex/soc/software/bios/boot.c @@ -18,7 +18,7 @@ extern void boot_helper(unsigned int r1, unsigned int r2, unsigned int r3, unsig static void __attribute__((noreturn)) boot(unsigned int r1, unsigned int r2, unsigned int r3, unsigned int addr) { - printf("Executing booted program.\n"); + printf("Executing booted program at 0x%08x\n", addr); uart_sync(); irq_setmask(0); irq_setie(0);