diff options
Diffstat (limited to 'src/devices/bus/a2bus')
-rw-r--r-- | src/devices/bus/a2bus/a2echoii.cpp | 6 | ||||
-rw-r--r-- | src/devices/bus/a2bus/a2hsscsi.h | 2 | ||||
-rw-r--r-- | src/devices/bus/a2bus/a2iwm.h | 2 | ||||
-rw-r--r-- | src/devices/bus/a2bus/a2mockingboard.cpp | 4 | ||||
-rw-r--r-- | src/devices/bus/a2bus/a2sd.h | 2 | ||||
-rw-r--r-- | src/devices/bus/a2bus/agat7langcard.h | 2 | ||||
-rw-r--r-- | src/devices/bus/a2bus/agat7ports.h | 2 | ||||
-rw-r--r-- | src/devices/bus/a2bus/agat840k_hle.h | 22 | ||||
-rw-r--r-- | src/devices/bus/a2bus/agat_fdc.h | 32 | ||||
-rw-r--r-- | src/devices/bus/a2bus/computereyes2.cpp | 8 | ||||
-rw-r--r-- | src/devices/bus/a2bus/pc_xporter.cpp | 36 | ||||
-rw-r--r-- | src/devices/bus/a2bus/prodosromdrive.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/a2bus/suprterminal.cpp | 2 | ||||
-rw-r--r-- | src/devices/bus/a2bus/titan3plus2.h | 2 | ||||
-rw-r--r-- | src/devices/bus/a2bus/transwarp.h | 6 |
15 files changed, 65 insertions, 65 deletions
diff --git a/src/devices/bus/a2bus/a2echoii.cpp b/src/devices/bus/a2bus/a2echoii.cpp index 1af618a1017..604dc7ae1c6 100644 --- a/src/devices/bus/a2bus/a2echoii.cpp +++ b/src/devices/bus/a2bus/a2echoii.cpp @@ -72,9 +72,9 @@ protected: private: //DECLARE_WRITE_LINE_MEMBER(tms_irq_callback); DECLARE_WRITE_LINE_MEMBER(tms_readyq_callback); - uint8_t m_writelatch_data = 0; // 74ls373 latch - bool m_readlatch_flag = false; // 74c74 1st half - bool m_writelatch_flag = false; // 74c74 2nd half + uint8_t m_writelatch_data; // 74ls373 latch + bool m_readlatch_flag; // 74c74 1st half + bool m_writelatch_flag; // 74c74 2nd half }; /*************************************************************************** diff --git a/src/devices/bus/a2bus/a2hsscsi.h b/src/devices/bus/a2bus/a2hsscsi.h index 4a7e36c84aa..be200ccde0d 100644 --- a/src/devices/bus/a2bus/a2hsscsi.h +++ b/src/devices/bus/a2bus/a2hsscsi.h @@ -57,7 +57,7 @@ private: int m_rambank, m_rombank; uint8_t m_drq; uint8_t m_bank; - uint8_t m_dma_control = 0; + uint8_t m_dma_control; uint8_t m_c0ne, m_c0nf; uint16_t m_dma_addr, m_dma_size; }; diff --git a/src/devices/bus/a2bus/a2iwm.h b/src/devices/bus/a2bus/a2iwm.h index 69a738cfdbc..3f0fe974d3a 100644 --- a/src/devices/bus/a2bus/a2iwm.h +++ b/src/devices/bus/a2bus/a2iwm.h @@ -64,7 +64,7 @@ public: virtual uint8_t read_cnxx(uint8_t offset) override; private: - uint8_t *m_rom = nullptr; + uint8_t *m_rom; }; // device type definition diff --git a/src/devices/bus/a2bus/a2mockingboard.cpp b/src/devices/bus/a2bus/a2mockingboard.cpp index 458e553d480..0968d55c9a0 100644 --- a/src/devices/bus/a2bus/a2mockingboard.cpp +++ b/src/devices/bus/a2bus/a2mockingboard.cpp @@ -92,8 +92,8 @@ protected: private: DECLARE_WRITE_LINE_MEMBER(write_via1_cb2); - u8 m_portb1 = 0; - int m_last_cb2_state = 0; + u8 m_portb1; + int m_last_cb2_state; }; class a2bus_phasor_device : public a2bus_ayboard_device diff --git a/src/devices/bus/a2bus/a2sd.h b/src/devices/bus/a2bus/a2sd.h index 1b675934bcc..85165248319 100644 --- a/src/devices/bus/a2bus/a2sd.h +++ b/src/devices/bus/a2bus/a2sd.h @@ -58,7 +58,7 @@ private: int m_in_bit; int m_shift_count; - emu_timer *m_shift_timer = nullptr; + emu_timer *m_shift_timer; }; // device type definition diff --git a/src/devices/bus/a2bus/agat7langcard.h b/src/devices/bus/a2bus/agat7langcard.h index 97729969260..e7dae54ebfb 100644 --- a/src/devices/bus/a2bus/agat7langcard.h +++ b/src/devices/bus/a2bus/agat7langcard.h @@ -49,7 +49,7 @@ private: int m_dxxx_bank; int m_main_bank; uint8_t m_ram[32 * 1024]; - uint8_t m_mode = 0; + uint8_t m_mode; uint8_t m_csr; }; diff --git a/src/devices/bus/a2bus/agat7ports.h b/src/devices/bus/a2bus/agat7ports.h index 7d1a2e512fc..2ee4f38b4dd 100644 --- a/src/devices/bus/a2bus/agat7ports.h +++ b/src/devices/bus/a2bus/agat7ports.h @@ -55,7 +55,7 @@ protected: DECLARE_WRITE_LINE_MEMBER(write_centronics_busy); private: - bool m_centronics_busy = false; + bool m_centronics_busy; }; // device type definition diff --git a/src/devices/bus/a2bus/agat840k_hle.h b/src/devices/bus/a2bus/agat840k_hle.h index c655f2c28d0..f51bda3324f 100644 --- a/src/devices/bus/a2bus/agat840k_hle.h +++ b/src/devices/bus/a2bus/agat840k_hle.h @@ -75,21 +75,21 @@ protected: required_device<i8255_device> m_d15; private: - legacy_floppy_image_device *m_floppy = nullptr; - bool m_side = false; + legacy_floppy_image_device *m_floppy; + bool m_side; std::unique_ptr<uint16_t[]> m_tracks[160]; - int m_count_read = 0; - int m_count_write = 0; - bool m_seen_magic = false; - int m_current_track = 0; + int m_count_read; + int m_count_write; + bool m_seen_magic; + int m_current_track; - u8 m_mxcs = 0; - int m_unit = 0; - int m_state = 0; + u8 m_mxcs; + int m_unit; + int m_state; - int m_seektime = 0; - int m_waittime = 0; + int m_seektime; + int m_waittime; emu_timer *m_timer_wait = nullptr; emu_timer *m_timer_seek = nullptr; diff --git a/src/devices/bus/a2bus/agat_fdc.h b/src/devices/bus/a2bus/agat_fdc.h index 3bfc413c188..e209902c709 100644 --- a/src/devices/bus/a2bus/agat_fdc.h +++ b/src/devices/bus/a2bus/agat_fdc.h @@ -78,22 +78,22 @@ private: void lss_start(); void lss_sync(); - floppy_image_device *floppy = nullptr; - int active = 0, bits = 0; - uint8_t data_reg = 0; - uint16_t address = 0; - uint64_t cycles = 0; - - u8 m_mxcs = 0; - int m_unit = 0; - int m_state = 0; - - int m_seektime = 0; - int m_waittime = 0; - - emu_timer *m_timer_lss = nullptr; - emu_timer *m_timer_seek = nullptr; - emu_timer *m_timer_motor = nullptr; + floppy_image_device *floppy; + int active, bits; + uint8_t data_reg; + uint16_t address; + uint64_t cycles; + + u8 m_mxcs; + int m_unit; + int m_state; + + int m_seektime; + int m_waittime; + + emu_timer *m_timer_lss; + emu_timer *m_timer_seek; + emu_timer *m_timer_motor; uint8_t *m_rom; uint8_t *m_rom_d6; diff --git a/src/devices/bus/a2bus/computereyes2.cpp b/src/devices/bus/a2bus/computereyes2.cpp index c0d3acf99a4..979472d00ef 100644 --- a/src/devices/bus/a2bus/computereyes2.cpp +++ b/src/devices/bus/a2bus/computereyes2.cpp @@ -43,10 +43,10 @@ protected: private: required_device<picture_image_device> m_picture; - int m_x = 0, m_y = 0, m_cer0 = 0, m_cer1 = 0, m_cer2 = 0; - u8 m_a2_bitmap[280*193]{}; - u8 m_threshold = 0; - bool m_bActive = false; + int m_x, m_y, m_cer0, m_cer1, m_cer2; + u8 m_a2_bitmap[280*193]; + u8 m_threshold; + bool m_bActive; }; /*************************************************************************** diff --git a/src/devices/bus/a2bus/pc_xporter.cpp b/src/devices/bus/a2bus/pc_xporter.cpp index 44733738da7..06a87cc1820 100644 --- a/src/devices/bus/a2bus/pc_xporter.cpp +++ b/src/devices/bus/a2bus/pc_xporter.cpp @@ -135,24 +135,24 @@ private: required_device<isa8_device> m_isabus; optional_device<pc_kbdc_device> m_pc_kbdc; - uint8_t m_u73_q2 = 0; - uint8_t m_out1 = 0; - int m_dma_channel = 0; - uint8_t m_dma_offset[4]{}; - uint8_t m_pc_spkrdata = 0; - uint8_t m_pit_out2 = 0; - bool m_cur_eop = false; - - uint8_t m_nmi_enabled = 0; - - uint8_t m_ram[768*1024]{}; - uint8_t m_c800_ram[0x400]{}; - uint8_t m_regs[0x400]{}; - uint32_t m_offset = 0; - address_space *m_pcmem_space = nullptr, *m_pcio_space = nullptr; - bool m_reset_during_halt = false; - - uint8_t m_6845_reg = 0; + uint8_t m_u73_q2; + uint8_t m_out1; + int m_dma_channel; + uint8_t m_dma_offset[4]; + uint8_t m_pc_spkrdata; + uint8_t m_pit_out2; + bool m_cur_eop; + + uint8_t m_nmi_enabled; + + uint8_t m_ram[768*1024]; + uint8_t m_c800_ram[0x400]; + uint8_t m_regs[0x400]; + uint32_t m_offset; + address_space *m_pcmem_space, *m_pcio_space; + bool m_reset_during_halt; + + uint8_t m_6845_reg; // interface to the keyboard DECLARE_WRITE_LINE_MEMBER( keyboard_clock_w ); diff --git a/src/devices/bus/a2bus/prodosromdrive.cpp b/src/devices/bus/a2bus/prodosromdrive.cpp index f4d442b85a0..d9275384a00 100644 --- a/src/devices/bus/a2bus/prodosromdrive.cpp +++ b/src/devices/bus/a2bus/prodosromdrive.cpp @@ -49,7 +49,7 @@ protected: private: required_region_ptr<u8> m_rom; - u16 m_latch = 0; + u16 m_latch; }; //************************************************************************** diff --git a/src/devices/bus/a2bus/suprterminal.cpp b/src/devices/bus/a2bus/suprterminal.cpp index e1d38179a58..796937bebcb 100644 --- a/src/devices/bus/a2bus/suprterminal.cpp +++ b/src/devices/bus/a2bus/suprterminal.cpp @@ -74,7 +74,7 @@ private: std::unique_ptr<u8[]> m_vram; std::unique_ptr<u8[]> m_fontram; // u8 m_fontram[0x400]; - bool m_bRasterRAM = false, m_bCharBank1 = false, m_bC800IsRAM = false; + bool m_bRasterRAM, m_bCharBank1, m_bC800IsRAM; }; //------------------------------------------------- diff --git a/src/devices/bus/a2bus/titan3plus2.h b/src/devices/bus/a2bus/titan3plus2.h index 7b67b4a87ef..f162f115d8e 100644 --- a/src/devices/bus/a2bus/titan3plus2.h +++ b/src/devices/bus/a2bus/titan3plus2.h @@ -55,7 +55,7 @@ private: u8 m_ram[128*1024]; bool m_enabled; - double m_joystick_x1_time = 0, m_joystick_y1_time = 0, m_joystick_x2_time = 0, m_joystick_y2_time = 0, m_x_calibration = 0, m_y_calibration = 0; + double m_joystick_x1_time, m_joystick_y1_time, m_joystick_x2_time, m_joystick_y2_time, m_x_calibration, m_y_calibration; }; // device type definition diff --git a/src/devices/bus/a2bus/transwarp.h b/src/devices/bus/a2bus/transwarp.h index f2b089b1b0b..1401f61776b 100644 --- a/src/devices/bus/a2bus/transwarp.h +++ b/src/devices/bus/a2bus/transwarp.h @@ -41,9 +41,9 @@ protected: private: bool m_bEnabled; - bool m_bReadA2ROM = false; - bool m_bIn1MHzMode = false; - emu_timer *m_timer = nullptr; + bool m_bReadA2ROM; + bool m_bIn1MHzMode; + emu_timer *m_timer; required_device<cpu_device> m_ourcpu; required_region_ptr<uint8_t> m_rom; |