# HG changeset patch # User Mike Pavone # Date 1368158389 25200 # Node ID fd7c24b97ebfefbbbe427b92ae6935f70ad3da7a # Parent 684e71e9f0d081423d1d401dff1463a7f3d9c525 Add YM2612 stubs to transz80 diff -r 684e71e9f0d0 -r fd7c24b97ebf transz80.c --- a/transz80.c Thu May 09 20:09:49 2013 -0700 +++ b/transz80.c Thu May 09 20:59:49 2013 -0700 @@ -14,6 +14,16 @@ #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;