summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2016-03-04 17:41:29 -0500
committer Scott Stone <tafoid@gmail.com>2016-03-04 17:41:29 -0500
commit57e8f72a1eedf11f5e43715b273e1d3a215170c7 (patch)
treec42c9b53a41cf0db02725d1d310b7501c335851a
parentc95862d51277a208bb4ef01dee20ece2eebfec19 (diff)
parent36238074f3ce0a451d8f37ef714101d465c05456 (diff)
Merge branch 'master' of https://github.com/mamedev/mame
-rw-r--r--src/mame/drivers/notetaker.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/notetaker.cpp b/src/mame/drivers/notetaker.cpp
index a369229365f..ff8ce2072e8 100644
--- a/src/mame/drivers/notetaker.cpp
+++ b/src/mame/drivers/notetaker.cpp
@@ -425,8 +425,7 @@ read from 0x44 (byte wide) in a loop forever (read keyboard fifo status)
/*
static ADDRESS_MAP_START(notetaker_emulatorcpu_mem, AS_PROGRAM, 16, notetaker_state)
AM_RANGE(0x00000, 0x00fff) AM_RAM // actually a banked block of ram
- AM_RANGE(0x02000, 0x3ffff) AM_RAM AM_BASE("mainram") // 256k of ram (less 8k), shared between both processors
- // note 4000-8fff? is the framebuffer for the screen?
+ AM_RANGE(0x01000, 0x3ffff) AM_MIRROR(0xC0000) AM_RAM AM_BASE("mainram") // 256k of ram (less 4k), shared between both processors, mirrored 4 times
AM_RANGE(0xFFFE0, 0xFFFEF) AM_READWRITE(proc_control_r, proc_control_w)
ADDRESS_MAP_END
*/