diff options
Diffstat (limited to 'src/emu/bus')
| -rw-r--r-- | src/emu/bus/a2bus/a2alfam2.c | 2 | ||||
| -rw-r--r-- | src/emu/bus/abcbus/lux21046.c | 12 | ||||
| -rw-r--r-- | src/emu/bus/abcbus/lux21056.c | 14 | ||||
| -rw-r--r-- | src/emu/bus/adamnet/fdc.c | 10 | ||||
| -rw-r--r-- | src/emu/bus/c64/pagefox.c | 2 | ||||
| -rw-r--r-- | src/emu/bus/pc_kbd/iskr1030.c | 4 | ||||
| -rw-r--r-- | src/emu/bus/plus4/std.h | 2 | ||||
| -rw-r--r-- | src/emu/bus/vic10/std.h | 2 |
8 files changed, 24 insertions, 24 deletions
diff --git a/src/emu/bus/a2bus/a2alfam2.c b/src/emu/bus/a2bus/a2alfam2.c index 197d6cdb4de..e55b43f773b 100644 --- a/src/emu/bus/a2bus/a2alfam2.c +++ b/src/emu/bus/a2bus/a2alfam2.c @@ -177,7 +177,7 @@ void a2bus_sn76489_device::write_c0nx(address_space &space, UINT8 offset, UINT8 case 3: if (m_has4thsn) { - m_sn4->write(space, 0, data); + m_sn4->write(space, 0, data); m_latch3 = data; } break; diff --git a/src/emu/bus/abcbus/lux21046.c b/src/emu/bus/abcbus/lux21046.c index b0dc187e9d3..cbf092fbef7 100644 --- a/src/emu/bus/abcbus/lux21046.c +++ b/src/emu/bus/abcbus/lux21046.c @@ -498,7 +498,7 @@ INPUT_PORTS_START( abc830 ) PORT_START("SW3") PORT_DIPNAME( 0x7f, 0x2d, "Card Address" ) PORT_DIPLOCATION("SW3:1,2,3,4,5,6,7") PORT_DIPSETTING( 0x2d, "45" ) - + PORT_START("S1") // also S3,S5 PORT_DIPNAME( 0x01, 0x01, "Interface Type" ) PORT_DIPSETTING( 0x00, "ABC 1600" ) @@ -549,7 +549,7 @@ INPUT_PORTS_START( abc832 ) PORT_START("SW3") PORT_DIPNAME( 0x7f, 0x2c, "Card Address" ) PORT_DIPLOCATION("SW3:1,2,3,4,5,6,7") PORT_DIPSETTING( 0x2c, "44" ) - + PORT_START("S1") // also S3,S5 PORT_DIPNAME( 0x01, 0x01, "Interface Type" ) PORT_DIPSETTING( 0x00, "ABC 1600" ) @@ -629,7 +629,7 @@ INPUT_PORTS_START( abc838 ) PORT_START("SW1") PORT_DIPNAME( 0x0f, 0x00, DEF_STR( Unused ) ) PORT_DIPLOCATION("SW1:1,2,3,4") PORT_DIPSETTING( 0x00, DEF_STR( Unused ) ) - + PORT_START("SW2") PORT_DIPNAME( 0x0f, 0x0e, "Drive Type" ) PORT_DIPLOCATION("SW2:1,2,3,4") PORT_DIPSETTING( 0x0e, "BASF 6105" ) @@ -688,7 +688,7 @@ INPUT_PORTS_START( abc850 ) PORT_START("SW3") PORT_DIPNAME( 0x7f, 0x2c, "Card Address" ) PORT_DIPLOCATION("SW3:1,2,3,4,5,6,7") PORT_DIPSETTING( 0x2c, "44" ) - + PORT_START("S1") // also S3,S5 PORT_DIPNAME( 0x01, 0x01, "Interface Type" ) PORT_DIPSETTING( 0x00, "ABC 1600" ) @@ -1125,11 +1125,11 @@ WRITE8_MEMBER( luxor_55_21046_device::_8a_w ) if (BIT(data, 2)) { - m_fdc->set_unscaled_clock(XTAL_16MHz/16); + m_fdc->set_unscaled_clock(XTAL_16MHz/16); } else { - m_fdc->set_unscaled_clock(XTAL_16MHz/8); + m_fdc->set_unscaled_clock(XTAL_16MHz/8); } } diff --git a/src/emu/bus/abcbus/lux21056.c b/src/emu/bus/abcbus/lux21056.c index 7dc84668a36..279021a8750 100644 --- a/src/emu/bus/abcbus/lux21056.c +++ b/src/emu/bus/abcbus/lux21056.c @@ -30,12 +30,12 @@ $ mess abc800m -bus abc850 -flop1 ufd631 -hard ro202.chd $ mess abc800m -bus abc850 -bus:abc850:io2 xebec,bios=basf6186 -flop1 ufd631 -hard basf6186.chd - - or with the ABC 852 attached: + + or with the ABC 852 attached: $ mess abc800m -bus abc852 -flop1 ufd631 -hard basf6185.chd $ mess abc800m -bus abc852 -bus:abc852:io2 xebec,bios=nec5126 -flop1 ufd631 -hard nec5126.chd - + or with the ABC 856 attached: $ mess abc800m -bus abc856 -flop1 ufd631 -hard micr1325.chd @@ -59,12 +59,12 @@ Enter "DOSGEN,F HD0:" to start the formatting utility. Enter "J", and enter "J" to confirm the formatting. - If you have a 20MB image, format the second partition by entering "DOSGEN,F HD1:", "J", and "J". + If you have a 20MB image, format the second partition by entering "DOSGEN,F HD1:", "J", and "J". - If you have a 60MB image, format the third partition by entering "DOSGEN,F HD2:", "J", and "J", - and format the fourth partition by entering "DOSGEN,F HD3:", "J", and "J". + If you have a 60MB image, format the third partition by entering "DOSGEN,F HD2:", "J", and "J", + and format the fourth partition by entering "DOSGEN,F HD3:", "J", and "J". - You can now list your freshly created partitions by entering "LIB". + You can now list your freshly created partitions by entering "LIB". Or skip all of the above and use the preformatted images in the software list: diff --git a/src/emu/bus/adamnet/fdc.c b/src/emu/bus/adamnet/fdc.c index cb7b778e8aa..fe7bd49683b 100644 --- a/src/emu/bus/adamnet/fdc.c +++ b/src/emu/bus/adamnet/fdc.c @@ -10,12 +10,12 @@ **********************************************************************/ /* - - TODO: - - 320KB DSDD 5.25" - - 720KB DSDD 3.5" - - 1.44MB DSHD 3.5" + TODO: + + - 320KB DSDD 5.25" + - 720KB DSDD 3.5" + - 1.44MB DSHD 3.5" */ diff --git a/src/emu/bus/c64/pagefox.c b/src/emu/bus/c64/pagefox.c index 2edc58983c6..16c46f12742 100644 --- a/src/emu/bus/c64/pagefox.c +++ b/src/emu/bus/c64/pagefox.c @@ -67,7 +67,7 @@ void c64_pagefox_cartridge_device::device_start() { // allocate memory m_ram.allocate(0x8000); - + // state saving save_item(NAME(m_bank)); } diff --git a/src/emu/bus/pc_kbd/iskr1030.c b/src/emu/bus/pc_kbd/iskr1030.c index 021d76088ff..96dc8d2abe3 100644 --- a/src/emu/bus/pc_kbd/iskr1030.c +++ b/src/emu/bus/pc_kbd/iskr1030.c @@ -66,7 +66,7 @@ static ADDRESS_MAP_START( iskr_1030_keyboard_io, AS_IO, 8, iskr_1030_keyboard_de AM_RANGE(0x00, 0xFF) AM_RAM AM_RANGE(MCS48_PORT_P1, MCS48_PORT_P1) AM_READWRITE(p1_r, p1_w) AM_RANGE(MCS48_PORT_P2, MCS48_PORT_P2) AM_WRITE(p2_w) -// AM_RANGE(MCS48_PORT_T0, MCS48_PORT_T0) AM_READ(t0_r) +// AM_RANGE(MCS48_PORT_T0, MCS48_PORT_T0) AM_READ(t0_r) AM_RANGE(MCS48_PORT_T1, MCS48_PORT_T1) AM_READ(t1_r) ADDRESS_MAP_END @@ -358,7 +358,7 @@ WRITE_LINE_MEMBER( iskr_1030_keyboard_device::data_write ) READ8_MEMBER( iskr_1030_keyboard_device::t0_r ) { return 0; -// return clock_signal(); +// return clock_signal(); } diff --git a/src/emu/bus/plus4/std.h b/src/emu/bus/plus4/std.h index 127bf66aa2f..99d57227f42 100644 --- a/src/emu/bus/plus4/std.h +++ b/src/emu/bus/plus4/std.h @@ -40,7 +40,7 @@ protected: // device_plus4_expansion_card_interface overrides virtual UINT8 plus4_cd_r(address_space &space, offs_t offset, UINT8 data, int ba, int cs0, int c1l, int c2l, int cs1, int c1h, int c2h); - + }; diff --git a/src/emu/bus/vic10/std.h b/src/emu/bus/vic10/std.h index 2aa7e3574f7..ca5fc55f593 100644 --- a/src/emu/bus/vic10/std.h +++ b/src/emu/bus/vic10/std.h @@ -26,7 +26,7 @@ // ======================> vic10_standard_cartridge_device class vic10_standard_cartridge_device : public device_t, - public device_vic10_expansion_card_interface + public device_vic10_expansion_card_interface { public: // construction/destruction |
