comparison transz80.c @ 505:b7b7a1cab44a

The local clone on my laptop got messed up and some changes had not been pushed. This commit represents the status of the working copy from that clone. It unfortunately contains some changes that I did not intend to commit yet, but this seems like the best option at the moment.
author Michael Pavone <pavone@retrodev.com>
date Mon, 06 Jan 2014 22:54:05 -0800
parents 140af5509ce7
children 759c38bf97f8
comparison
equal deleted inserted replaced
504:7b0df1aaf384 505:b7b7a1cab44a
1 /* 1 /*
2 Copyright 2013 Michael Pavone 2 Copyright 2013 Michael Pavone
3 This file is part of BlastEm. 3 This file is part of BlastEm.
4 BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text. 4 BlastEm is free software distributed under the terms of the GNU General Public License version 3 or greater. See COPYING for full license text.
5 */ 5 */
6 #include "z80inst.h" 6 #include "z80inst.h"
7 #include "z80_to_x86.h" 7 #include "z80_to_x86.h"
8 #include "mem.h" 8 #include "mem.h"
23 { 23 {
24 return 0xFF; 24 return 0xFF;
25 } 25 }
26 26
27 z80_context * z80_write_ym(uint16_t location, z80_context * context, uint8_t value) 27 z80_context * z80_write_ym(uint16_t location, z80_context * context, uint8_t value)
28 {
29 return context;
30 }
31
32 z80_context * z80_vdp_port_write(uint16_t location, z80_context * context, uint8_t value)
28 { 33 {
29 return context; 34 return context;
30 } 35 }
31 36
32 int main(int argc, char ** argv) 37 int main(int argc, char ** argv)