summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2025-12-21 17:56:40 +0100
committertaitep <taitep@taitep.se>2025-12-21 17:56:40 +0100
commit5c132b55e9d197df0eca9e82db556f0dfb65a627 (patch)
tree932728c3d6a72d01044002f7ca6a1e07b7b05a50
parentc10e1ec09bca38d634b632d4afc75d80b893c41f (diff)
Fix assembly syntax in echo program
-rw-r--r--echo.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/echo.S b/echo.S
index 58b2573..7c29fec 100644
--- a/echo.S
+++ b/echo.S
@@ -3,8 +3,8 @@
.equ UART_DATA, 0
.equ UART_STATUS, 1
-.equ UART_RX_READY = 0b10
-.equ UART_TX_READY = 0b01
+.equ UART_RX_READY, 0b10
+.equ UART_TX_READY, 0b01
_start:
li a0, 0x1000