aboutsummaryrefslogtreecommitdiff
path: root/c/echo.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/echo.c')
-rw-r--r--c/echo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/echo.c b/c/echo.c
index 8775573..59153d3 100644
--- a/c/echo.c
+++ b/c/echo.c
@@ -155,7 +155,7 @@ void echo_send_command_addr(uint8_t cmd, const void *addr) {
Z80_REQUEST();
// Is Echo busy yet?
- volatile uint8_t *ptr = &z80_ram[0x1FFC]
+ volatile uint8_t *ptr = &z80_ram[0x1FFC];
if (ptr[3] != 0x00) {
ptr -= 4;
while (ptr[3] != 0x00) {
@@ -191,7 +191,7 @@ void echo_send_command_byte(uint8_t cmd, uint8_t byte) {
Z80_REQUEST();
// Is Echo busy yet?
- volatile uint8_t *ptr = &z80_ram[0x1FFC]
+ volatile uint8_t *ptr = &z80_ram[0x1FFC];
if (ptr[3] != 0x00) {
ptr -= 4;
while (ptr[3] != 0x00) {