From 279ec488e3608da644f3e080ca10153d3a96f5ab Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Tue, 26 Sep 2017 14:54:16 +1000 Subject: [PATCH] bios: Print location jumping too. Makes it easier to understand what is happening (and that the BIOS is jumping to the right place). --- litex/soc/software/bios/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/software/bios/boot.c b/litex/soc/software/bios/boot.c index e0ff8ba95..ed7d3cbaf 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);