diff options
| author | taitep <taitep@taitep.se> | 2025-12-21 17:56:40 +0100 |
|---|---|---|
| committer | taitep <taitep@taitep.se> | 2025-12-21 17:56:40 +0100 |
| commit | 5c132b55e9d197df0eca9e82db556f0dfb65a627 (patch) | |
| tree | 932728c3d6a72d01044002f7ca6a1e07b7b05a50 /echo.S | |
| parent | c10e1ec09bca38d634b632d4afc75d80b893c41f (diff) | |
Fix assembly syntax in echo program
Diffstat (limited to 'echo.S')
| -rw-r--r-- | echo.S | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
