summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Robbbert <robbbert@users.noreply.github.com>2014-10-18 22:08:07 +0000
committer Robbbert <robbbert@users.noreply.github.com>2014-10-18 22:08:07 +0000
commit00d0c67a02a0bb416f83fe4111d3064434700dc0 (patch)
tree7c1a1efbe55cade7df38a130d24a9833a98541fd /src
parent932b305d754b9c39036a38f418530d7276d936c7 (diff)
Fixed compile for nonstandard tools
Diffstat (limited to 'src')
-rw-r--r--src/mess/machine/ti85.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/ti85.c b/src/mess/machine/ti85.c
index 3e9fe6b8be4..60293e973c8 100644
--- a/src/mess/machine/ti85.c
+++ b/src/mess/machine/ti85.c
@@ -151,7 +151,7 @@ void ti85_state::update_ti85_memory ()
void ti85_state::update_ti83p_memory ()
{
- address_space &space = m_maincpu->space(AS_PROGRAM);
+ //address_space &space = m_maincpu->space(AS_PROGRAM);
m_membank1->set_bank(0); //Always flash page 0, well allmost
@@ -179,7 +179,7 @@ void ti85_state::update_ti83p_memory ()
void ti85_state::update_ti83pse_memory ()
{
- address_space &space = m_maincpu->space(AS_PROGRAM);
+ //address_space &space = m_maincpu->space(AS_PROGRAM);
m_membank1->set_bank(m_ti8x_memory_page_0);
@@ -304,7 +304,7 @@ MACHINE_RESET_MEMBER(ti85_state,ti83pse)
MACHINE_START_MEMBER(ti85_state,ti83p)
{
- address_space &space = m_maincpu->space(AS_PROGRAM);
+ //address_space &space = m_maincpu->space(AS_PROGRAM);
//m_bios = memregion("flash")->base();
m_timer_interrupt_mask = 0;
@@ -342,7 +342,7 @@ MACHINE_START_MEMBER(ti85_state,ti83p)
MACHINE_START_MEMBER(ti85_state,ti83pse)
{
- address_space &space = m_maincpu->space(AS_PROGRAM);
+ //address_space &space = m_maincpu->space(AS_PROGRAM);
//address_space &asic = ADDRESS_MAP_NAME(ti83p_asic_mem);
m_timer_interrupt_mask = 0;