From: Florent Kermarrec Date: Thu, 2 May 2019 16:26:35 +0000 (+0200) Subject: bios/boot: add liftoff banner just before booting X-Git-Tag: 24jan2021_ls180~1247 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=21bf10383d137c0012a4c95c7b79fff295010470;p=litex.git bios/boot: add liftoff banner just before booting --- diff --git a/litex/soc/software/bios/boot.c b/litex/soc/software/bios/boot.c index 93847da8..e3aace91 100644 --- a/litex/soc/software/bios/boot.c +++ b/litex/soc/software/bios/boot.c @@ -22,6 +22,7 @@ extern void boot_helper(unsigned long r1, unsigned long r2, unsigned long r3, un static void __attribute__((noreturn)) boot(unsigned long r1, unsigned long r2, unsigned long r3, unsigned long addr) { printf("Executing booted program at 0x%08x\n", addr); + printf("--============= \e[1mLiftoff!\e[0m ===============--\n"); uart_sync(); irq_setmask(0); irq_setie(0);