summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2012-07-13 00:35:01 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2012-07-13 00:35:01 +0000
commitf31760c27f7e2367afe24ec15e581b5176af5e71 (patch)
treec6b3430cf4348b941d109a5713d8b440f482ad74 /src
parent2b2c9353bf5d2ed937aa79891ba401e9f8c49101 (diff)
Fix compile (nw)
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/model3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/model3.c b/src/mame/drivers/model3.c
index e93f91ee117..e89d3bb734f 100644
--- a/src/mame/drivers/model3.c
+++ b/src/mame/drivers/model3.c
@@ -5763,9 +5763,9 @@ static DRIVER_INIT( harley )
state->m_network_ram = auto_alloc_array_clear(machine, UINT64, 0x10000);
machine.device("maincpu")->memory().space(AS_PROGRAM)->install_readwrite_handler(0xc0000000, 0xc00fffff, read64_delegate(FUNC(model3_state::network_r),state), write64_delegate(FUNC(model3_state::network_w),state));
- rom[(0x50ecb4^4)/4] = 0x60000000;
- rom[(0x50ecd4^4)/4] = 0x60000000;
- rom[(0x50ff64^4)/4] = 0x60000000;
+ //rom[(0x50ecb4^4)/4] = 0x60000000;
+ //rom[(0x50ecd4^4)/4] = 0x60000000;
+ //rom[(0x50ff64^4)/4] = 0x60000000;
//rom[(0x4f736c^4)/4] = 0x60000000; // Fix ME!! Needs to be updated for the REV B version!!
//rom[(0x4f738c^4)/4] = 0x60000000; // Fix ME!! Needs to be updated for the REV B version!!
}