blob: 6a4a556babb36b644ab0a5191dbf992be453c253 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
void z80_read_8(z80_context *context)
{
context->cycles += 3 * context->opts->gen.clock_divider;
context->scratch1 = read_byte(context->scratch1, NULL, &context->opts->gen, context);
}
void z80_write_8(z80_context *context)
{
context->cycles += 3 * context->opts->gen.clock_divider;
write_byte(context->scratch2, context->scratch1, NULL, &context->opts->gen, context);
}
void z80_io_read8(z80_context *context)
{
}
void z80_io_write8(z80_context *context)
{
}
|