From 897ea407601c7ea70b659e4e58ff872c03567142 Mon Sep 17 00:00:00 2001 From: Saurabh Singh Date: Sun, 17 Sep 2023 22:06:01 -0400 Subject: [PATCH] Update readme & cleanup --- sw/bootloader/README.md | 4 ++-- sw/examples/banner/banner.c | 8 -------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/sw/bootloader/README.md b/sw/bootloader/README.md index 2eca45a0..f27982e3 100644 --- a/sw/bootloader/README.md +++ b/sw/bootloader/README.md @@ -1,2 +1,2 @@ -# FlashBoot -FlashBoot is a bootloader for Hydrogensoc capable of loading and executing code from SPI flash memory. \ No newline at end of file +# RISC-V Atom bootloader +Bootloader for Hydrogensoc capable of loading and executing code from SPI flash memory. \ No newline at end of file diff --git a/sw/examples/banner/banner.c b/sw/examples/banner/banner.c index a98fde7c..e7be5fec 100644 --- a/sw/examples/banner/banner.c +++ b/sw/examples/banner/banner.c @@ -28,14 +28,6 @@ char * banner = " /_/ |_/___//____/\\____/ |___/ \\__,_/\\__/\\____/_/ /_/ /_/ \n" "/=========By: Saurabh Singh (saurabh.s99100@gmail.com)====/\n\n"; -void get_isa(char * buf){ - uint32_t misa = CSR_read(CSR_MISA); - char misa_fmt[] = "" - for(int i=0; i<32; i++) { - - } -} - int main() { serial_init(UART_BAUD_115200);