From ef4ea546537bf759e3c4b37126f57cc39e7fb08a Mon Sep 17 00:00:00 2001 From: sik Date: Fri, 11 Aug 2017 10:11:15 -0300 Subject: Oh fffffffs seriously considering just removing the C files, not like Echo was ever useable by anybody other than myself at all --- c/echo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c/echo.c') 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) { -- cgit v1.2.3