aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsik2017-08-11 10:11:15 -0300
committersik2017-08-11 10:11:15 -0300
commitef4ea546537bf759e3c4b37126f57cc39e7fb08a (patch)
treeecf267fb1f4b25b1e07076fe233910d8af779bc6
parente6e17cb68844f558addef07b93cbd6e9f1cad8ba (diff)
Oh fffffffs seriously considering just removing the C files, not like Echo was ever useable by anybody other than myself at all
-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) {