From 528b519ce98c21049705526442cbde1672495b49 Mon Sep 17 00:00:00 2001 From: taitep Date: Fri, 26 Dec 2025 14:20:27 +0100 Subject: (BIG CHANGE) memory handling has changed, MMIO is now a 2 level page table, misaligned access supported, addresses not internally split to page and offset immediately, all load/store instructions implemented. Might still have bugs --- echo.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'echo.S') diff --git a/echo.S b/echo.S index 7c29fec..337c26b 100644 --- a/echo.S +++ b/echo.S @@ -7,7 +7,7 @@ .equ UART_TX_READY, 0b01 _start: - li a0, 0x1000 + li a0, 0x10000 loop: lbu t0, UART_STATUS(a0) -- cgit v1.2.3