From 6266e3e5577bc7c11d300a873c150b6a7900376a Mon Sep 17 00:00:00 2001 From: Javier Degirolmo Date: Mon, 27 Aug 2012 07:58:24 -0300 Subject: Fuck it, we're doing it live --- c/echo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c/echo.c') diff --git a/c/echo.c b/c/echo.c index aac7941..dcc844c 100644 --- a/c/echo.c +++ b/c/echo.c @@ -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(); -- cgit v1.2.3