summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/inteladv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/inteladv.cpp')
-rw-r--r--src/mame/drivers/inteladv.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mame/drivers/inteladv.cpp b/src/mame/drivers/inteladv.cpp
index a62436236fe..169f69eb304 100644
--- a/src/mame/drivers/inteladv.cpp
+++ b/src/mame/drivers/inteladv.cpp
@@ -4,6 +4,9 @@
VTech Intelligence Advance E/R Lerncomputer
+ TODO: dyndesk writes to low memory go to external RAM instead? It also
+ eventually runs off into nonexistent memory.
+
***************************************************************************/
#include "emu.h"
@@ -36,7 +39,7 @@ void inteladv_state::inteladv_map(address_map &map)
void inteladv_state::dyndesk_map(address_map &map)
{
- map(0x000000, 0x1fffff).rom().region("maincpu", 0).nopw(); // writes to low memory go to external RAM instead?
+ map(0x000000, 0x1fffff).rom().region("maincpu", 0).nopw();
}
static INPUT_PORTS_START( inteladv )