diff options
author | Christian Cunningham <cc@localhost> | 2022-01-11 18:05:00 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-11 18:05:00 -0700 |
commit | 5b3ceca69d5432f976ac487c63a75f8c6275028b (patch) | |
tree | c932890424d8e30ea61a7a406967f8d6e2daf39f /src/drivers/uart.S | |
parent | 516df5812ac64d87ac2e32ebf0211534ea0abaa7 (diff) |
Memory freeing is optimized
Fixed Uart Bug temporarily
Diffstat (limited to 'src/drivers/uart.S')
-rw-r--r-- | src/drivers/uart.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/uart.S b/src/drivers/uart.S index cde6c11..731e160 100644 --- a/src/drivers/uart.S +++ b/src/drivers/uart.S @@ -49,5 +49,5 @@ uart_hex.hloop: uart_hex.print: str r1, [r2] subs r3, #1 - bge uart_hex.loop // Jump back to wait for availablilty + bge uart_hex.hloop // Jump back to wait for availablilty pop {r4, pc} |