diff options
Diffstat (limited to 'src/mame/drivers/hp48.cpp')
-rw-r--r-- | src/mame/drivers/hp48.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/hp48.cpp b/src/mame/drivers/hp48.cpp index cd50c99ac0f..9dc6c18bf59 100644 --- a/src/mame/drivers/hp48.cpp +++ b/src/mame/drivers/hp48.cpp @@ -1295,8 +1295,8 @@ MACHINE_CONFIG_START(hp48_state::hp48gx) MCFG_MACHINE_START_OVERRIDE (hp48_state, hp48gx ) /* expansion ports */ - MCFG_HP48_PORT_ADD ( "port1", HP48_CE2, 128*1024 ) - MCFG_HP48_PORT_ADD ( "port2", HP48_NCE3, 4*1024*1024 ) + HP48_PORT(config, m_port[0], HP48_CE2, 128*1024 ); + HP48_PORT(config, m_port[1], HP48_NCE3, 4*1024*1024 ); /* serial I/O */ //MCFG_XMODEM_ADD( "rs232_x", hp48_xmodem_rs232_conf ) @@ -1330,8 +1330,8 @@ MACHINE_CONFIG_START(hp48_state::hp48sx) MCFG_MACHINE_START_OVERRIDE (hp48_state, hp48sx ) /* expansion ports */ - MCFG_HP48_PORT_ADD ( "port1", HP48_CE1, 128*1024) - MCFG_HP48_PORT_ADD ( "port2", HP48_CE2, 128*1024) + HP48_PORT(config, m_port[0], HP48_CE1, 128*1024 ); + HP48_PORT(config, m_port[1], HP48_CE2, 128*1024 ); /* serial I/O */ //MCFG_KERMIT_ADD( "rs232_k", hp48_kermit_rs232_conf ) |