comparison z80_util.c @ 1706:c2324849a5e5

Initial checkin of new WIP Z80 core using CPU DSL
author Michael Pavone <pavone@retrodev.com>
date Mon, 28 Jan 2019 21:16:41 -0800
parents
children 4fd84c3efc72
comparison
equal deleted inserted replaced
1705:9ab64ef5cba0 1706:c2324849a5e5
1
2 void z80_read_8(z80_context *context)
3 {
4 context->scratch1 = read_byte(context->scratch1, NULL, &context->opts->gen, context);
5 }
6
7 void z80_write_8(z80_context *context)
8 {
9 write_byte(context->scratch2, context->scratch1, NULL, &context->opts->gen, context);
10 }
11
12 void z80_io_read8(z80_context *context)
13 {
14 }
15
16 void z80_io_write8(z80_context *context)
17 {
18 }