diff options
author | 2014-05-19 08:56:44 +0000 | |
---|---|---|
committer | 2014-05-19 08:56:44 +0000 | |
commit | 3d8de227e011867dda5067cc8642abaf721e44df (patch) | |
tree | 127031fa2b005d8cbd7943aa096f12c82b124a0f /src/mess/drivers/hp48.c | |
parent | 9099f97b93b34591777e88b58d485ac0cf90d38f (diff) |
made hp48 image device to use inline config (nw)
Diffstat (limited to 'src/mess/drivers/hp48.c')
-rw-r--r-- | src/mess/drivers/hp48.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/hp48.c b/src/mess/drivers/hp48.c index 9f4f89da7d6..79998f00891 100644 --- a/src/mess/drivers/hp48.c +++ b/src/mess/drivers/hp48.c @@ -1298,8 +1298,8 @@ static MACHINE_CONFIG_DERIVED( hp48gx, hp48_common ) MCFG_DEFAULT_LAYOUT ( layout_hp48gx ) /* expansion ports */ - MCFG_HP48_PORT_ADD ( "port1", hp48gx_port1_config ) - MCFG_HP48_PORT_ADD ( "port2", hp48gx_port2_config ) + MCFG_HP48_PORT_ADD ( "port1", 0, HP48_CE2, 128*1024 ) + MCFG_HP48_PORT_ADD ( "port2", 1, HP48_NCE3, 4*1024*1024 ) /* serial I/O */ //MCFG_XMODEM_ADD( "rs232_x", hp48_xmodem_rs232_conf ) @@ -1333,8 +1333,8 @@ static MACHINE_CONFIG_DERIVED( hp48sx, hp48_common ) MCFG_DEFAULT_LAYOUT ( layout_hp48sx ) /* expansion ports */ - MCFG_HP48_PORT_ADD ( "port1", hp48sx_port1_config ) - MCFG_HP48_PORT_ADD ( "port2", hp48sx_port2_config ) + MCFG_HP48_PORT_ADD ( "port1", 0, HP48_CE1, 128*1024) + MCFG_HP48_PORT_ADD ( "port2", 1, HP48_CE2, 128*1024) /* serial I/O */ //MCFG_KERMIT_ADD( "rs232_k", hp48_kermit_rs232_conf ) |