From 21bf10383d137c0012a4c95c7b79fff295010470 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 2 May 2019 18:26:35 +0200 Subject: [PATCH] bios/boot: add liftoff banner just before booting --- litex/soc/software/bios/boot.c | 1 + 1 file changed, 1 insertion(+) 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); -- 2.30.2