diff options
| author | sik | 2017-08-11 10:08:43 -0300 |
|---|---|---|
| committer | sik | 2017-08-11 10:08:43 -0300 |
| commit | e6e17cb68844f558addef07b93cbd6e9f1cad8ba (patch) | |
| tree | ba32139dff0018ac956a737a9e43f3702f4e2ad7 /c/echo.c | |
| parent | 7d516cc248777ae239c5a4e50fa325365ddd7d53 (diff) | |
Note to self: set up SGDK and some other C compilers >_>
Diffstat (limited to 'c/echo.c')
| -rw-r--r-- | c/echo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |
