From 4e3c7dd311f1babc8aa1993c4b10fe1d1f092744 Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Thu, 9 May 2013 20:59:49 -0700 Subject: Add YM2612 stubs to transz80 --- transz80.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'transz80.c') diff --git a/transz80.c b/transz80.c index afe99fd..2c8c417 100644 --- a/transz80.c +++ b/transz80.c @@ -14,6 +14,16 @@ uint16_t cart[0x200000]; #define VINT_CYCLE ((MCLKS_LINE * 226)/MCLKS_PER_Z80) #define CYCLE_NEVER 0xFFFFFFFF +uint8_t z80_read_ym(uint16_t location, z80_context * context) +{ + return 0xFF; +} + +z80_context * z80_write_ym(uint16_t location, z80_context * context, uint8_t value) +{ + return context; +} + int main(int argc, char ** argv) { long filesize; -- cgit v1.2.3