summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2014-12-26 21:26:25 -0800
committerMichael Pavone <pavone@retrodev.com>2014-12-26 21:26:25 -0800
commit4bf9f13589dc4c9e59ead0a864dac28a518949f0 (patch)
tree6616c5070ae9f771e014bf0af2e491f815e28d89
parent1d301541a75bbc1cde775ce5deaef43c5cbb663f (diff)
Fix memory map flags in ztestrun
-rw-r--r--ztestrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ztestrun.c b/ztestrun.c
index 781afa9..1c7c6d8 100644
--- a/ztestrun.c
+++ b/ztestrun.c
@@ -30,7 +30,7 @@ void * z80_unmapped_write(uint32_t location, void * context, uint8_t value)
const memmap_chunk z80_map[] = {
{ 0x0000, 0x4000, 0x1FFF, 0, MMAP_READ | MMAP_WRITE | MMAP_CODE, z80_ram, NULL, NULL, NULL, NULL },
- { 0x4000, 0x10000, 0xFFFF, 0, MMAP_READ | MMAP_WRITE, NULL, NULL, NULL, z80_unmapped_read, z80_unmapped_write}
+ { 0x4000, 0x10000, 0xFFFF, 0, 0, NULL, NULL, NULL, z80_unmapped_read, z80_unmapped_write}
};
int main(int argc, char ** argv)