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 60cd34a..8775573 100644
--- a/c/echo.c
+++ b/c/echo.c
@@ -120,7 +120,7 @@ void echo_send_command(uint8_t cmd) {
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) {
@@ -423,7 +423,7 @@ uint8_t echo_get_flags(void)
{
Z80_REQUEST();
uint8_t flags = z80_ram[0x1FF2];
- Z88_RELEASE();
+ Z80_RELEASE();
return flags;
}