Previous 199869 Revisions Next

r31298 Thursday 17th July, 2014 at 01:08:49 UTC by R. Belmont
(MESS) Minor Apollo cleanups & removal of no-longer-supported options, plus data format fix for systems using a serial terminal. [Hans Ostermeyer]
[src/emu/bus/isa]omti8621.h
[src/mess/drivers]apollo.c
[src/mess/machine]apollo.c

trunk/src/emu/bus/isa/omti8621.h
r31297r31298
4040   DECLARE_READ16_MEMBER(read);
4141   DECLARE_WRITE16_MEMBER(write);
4242
43   void set_verbose(int on_off);
43   static void set_verbose(int on_off);
4444
4545   // get sector diskaddr of logical unit lun into data_buffer
4646   UINT32 get_sector(INT32 diskaddr, UINT8 *data_buffer, UINT32 length, UINT8 lun);
trunk/src/mess/drivers/apollo.c
r31297r31298
919919
920920   // we can't do this any more
921921   #if 0
922   // set configuration
923   omti8621_device::set_verbose(apollo_config(APOLLO_CONF_DISK_TRACE));
924   threecom3c505_device::set_verbose(apollo_config(APOLLO_CONF_NET_TRACE));
925
922926   if (apollo_config(APOLLO_CONF_NODE_ID))
923927   {
924928      UINT8 db[0x50];
trunk/src/mess/machine/apollo.c
r31297r31298
9797      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
9898      PORT_CONFSETTING(APOLLO_CONF_25_YEARS_AGO, DEF_STR ( On ) )
9999
100      PORT_CONFNAME(APOLLO_CONF_NODE_ID, APOLLO_CONF_NODE_ID, "Node ID from Disk")
101      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
102      PORT_CONFSETTING(APOLLO_CONF_NODE_ID, DEF_STR ( On ) )
100//      PORT_CONFNAME(APOLLO_CONF_NODE_ID, APOLLO_CONF_NODE_ID, "Node ID from Disk")
101//      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
102//      PORT_CONFSETTING(APOLLO_CONF_NODE_ID, DEF_STR ( On ) )
103103
104104//      PORT_CONFNAME(APOLLO_CONF_IDLE_SLEEP, 0x00, "Idle Sleep")
105105//      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
r31297r31298
113113      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
114114      PORT_CONFSETTING(APOLLO_CONF_FPU_TRACE, DEF_STR ( On ) )
115115
116      PORT_CONFNAME(APOLLO_CONF_DISK_TRACE, 0x00, "Disk Trace")
117      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
118      PORT_CONFSETTING(APOLLO_CONF_DISK_TRACE, DEF_STR ( On ) )
116//      PORT_CONFNAME(APOLLO_CONF_DISK_TRACE, 0x00, "Disk Trace")
117//      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
118//      PORT_CONFSETTING(APOLLO_CONF_DISK_TRACE, DEF_STR ( On ) )
119119
120      PORT_CONFNAME(APOLLO_CONF_NET_TRACE, 0x00, "Network Trace")
121      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
122      PORT_CONFSETTING(APOLLO_CONF_NET_TRACE, DEF_STR ( On ) )
120//      PORT_CONFNAME(APOLLO_CONF_NET_TRACE, 0x00, "Network Trace")
121//      PORT_CONFSETTING(0x00, DEF_STR ( Off ) )
122//      PORT_CONFSETTING(APOLLO_CONF_NET_TRACE, DEF_STR ( On ) )
123123
124124INPUT_PORTS_END
125125
r31297r31298
808808      // remember CSRB to handle MD selftest or SK command
809809      m_csrb = data;
810810      break;
811#if 0
811#if 1
812812   case 0x0b: /* THRB */
813813      // tee output of SIO1 to stdout
814814      // sad: ceterm will get confused from '\r'
r31297r31298
964964   DEVICE_INPUT_DEFAULTS( "RS232_TXBAUD", 0xff, RS232_BAUD_9600 )
965965   DEVICE_INPUT_DEFAULTS( "RS232_RXBAUD", 0xff, RS232_BAUD_9600 )
966966   DEVICE_INPUT_DEFAULTS( "RS232_STARTBITS", 0xff, RS232_STARTBITS_1 )
967   DEVICE_INPUT_DEFAULTS( "RS232_DATABITS", 0xff, RS232_DATABITS_8 )
968   DEVICE_INPUT_DEFAULTS( "RS232_PARITY", 0xff, RS232_PARITY_NONE )
967   DEVICE_INPUT_DEFAULTS( "RS232_DATABITS", 0xff, RS232_DATABITS_7 )
968   DEVICE_INPUT_DEFAULTS( "RS232_PARITY", 0xff, RS232_PARITY_EVEN )
969969   DEVICE_INPUT_DEFAULTS( "RS232_STOPBITS", 0xff, RS232_STOPBITS_1 )
970970DEVICE_INPUT_DEFAULTS_END
971971

Previous 199869 Revisions Next


© 1997-2024 The MAME Team