diff options
| author | Javier Degirolmo | 2012-08-27 07:58:24 -0300 |
|---|---|---|
| committer | Javier Degirolmo | 2012-08-27 07:58:24 -0300 |
| commit | 6266e3e5577bc7c11d300a873c150b6a7900376a (patch) | |
| tree | 82b14ee437f6f802cd5cd896dd66c58c29ea7ec0 /c/echo.c | |
| parent | 2f83b4822b5825d58ab4a74e4e9e5f0be2cc78f2 (diff) | |
Fuck it, we're doing it live
Diffstat (limited to 'c/echo.c')
| -rw-r--r-- | c/echo.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -77,7 +77,7 @@ void echo_init(const void **list) { // param cmd: command to send //*************************************************************************** -void echo_send_command(unsigned char cmd) { +void echo_send_command(uint8_t cmd) { // We need access to Z80 bus Z80_REQUEST(); @@ -104,7 +104,7 @@ void echo_send_command(unsigned char cmd) { // param addr: address parameter //*************************************************************************** -void echo_send_command_ex(unsigned char cmd, const void *addr) { +void echo_send_command_ex(uint8_t cmd, const void *addr) { // Since we need to split the address into multiple bytes we put it in an // integer. This is a bad practice in general, period, but since we don't // care about portability here we can afford to do it this time. @@ -190,7 +190,7 @@ void echo_stop_sfx(void) { // return: status flags (see ECHO_STAT_*) //*************************************************************************** -unsigned short echo_get_status(void) { +uint16_t echo_get_status(void) { // We need access to the Z80 Z80_REQUEST(); |
