diff options
Diffstat (limited to 'hw')
-rw-r--r-- | hw/g364fb.c | 1 | ||||
-rw-r--r-- | hw/mips_jazz.c | 4 | ||||
-rw-r--r-- | hw/rc4030.c | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/hw/g364fb.c b/hw/g364fb.c index 64c2988..5360bce 100644 --- a/hw/g364fb.c +++ b/hw/g364fb.c @@ -20,6 +20,7 @@ */ #include "hw.h" +#include "mips.h" #include "console.h" #include "pixel_ops.h" diff --git a/hw/mips_jazz.c b/hw/mips_jazz.c index b332a45..cdf2196 100644 --- a/hw/mips_jazz.c +++ b/hw/mips_jazz.c @@ -102,12 +102,12 @@ static void audio_init(qemu_irq *pic) } #endif -void espdma_memory_read(void *opaque, uint8_t *buf, int len) +static void espdma_memory_read(void *opaque, uint8_t *buf, int len) { printf("espdma_memory_read(buf %p, len %d) not implemented\n", buf, len); } -void espdma_memory_write(void *opaque, uint8_t *buf, int len) +static void espdma_memory_write(void *opaque, uint8_t *buf, int len) { printf("espdma_memory_write(buf %p, len %d) not implemented\n", buf, len); } diff --git a/hw/rc4030.c b/hw/rc4030.c index 0384cf2..54f9adf 100644 --- a/hw/rc4030.c +++ b/hw/rc4030.c @@ -23,6 +23,7 @@ */ #include "hw.h" +#include "mips.h" #include "qemu-timer.h" //#define DEBUG_RC4030 |