diff options
Diffstat (limited to 'src/mess/includes')
| -rw-r--r-- | src/mess/includes/pet.h | 2 | ||||
| -rwxr-xr-x | src/mess/includes/ti85.h | 10 | ||||
| -rw-r--r-- | src/mess/includes/victor9k.h | 2 | ||||
| -rw-r--r-- | src/mess/includes/wswan.h | 16 | ||||
| -rw-r--r-- | src/mess/includes/xerox820.h | 2 |
5 files changed, 16 insertions, 16 deletions
diff --git a/src/mess/includes/pet.h b/src/mess/includes/pet.h index 0335faf4b58..d4572a99c05 100644 --- a/src/mess/includes/pet.h +++ b/src/mess/includes/pet.h @@ -236,7 +236,7 @@ public: class cbm8096_state : public pet80_state { public: - cbm8096_state(const machine_config &mconfig, device_type type, const char *tag) : + cbm8096_state(const machine_config &mconfig, device_type type, const char *tag) : pet80_state(mconfig, type, tag) { } }; diff --git a/src/mess/includes/ti85.h b/src/mess/includes/ti85.h index e967101f034..88cc93f3cd7 100755 --- a/src/mess/includes/ti85.h +++ b/src/mess/includes/ti85.h @@ -181,7 +181,7 @@ public: TIMER_CALLBACK_MEMBER(ti85_timer_callback); TIMER_CALLBACK_MEMBER(ti83_timer1_callback); TIMER_CALLBACK_MEMBER(ti83_timer2_callback); - + //crystal timers virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr); void ti83pse_count( UINT8 timer, UINT8 data); @@ -207,8 +207,8 @@ public: DECLARE_WRITE8_MEMBER( ti83pse_ctimer3_loop_w ); DECLARE_READ8_MEMBER( ti83pse_ctimer3_count_r ); DECLARE_WRITE8_MEMBER( ti83pse_ctimer3_count_w ); - - + + void update_ti85_memory (); void update_ti83p_memory (); void update_ti83pse_memory (); @@ -218,9 +218,9 @@ public: void ti86_setup_snapshot (UINT8 * data); DECLARE_SNAPSHOT_LOAD_MEMBER( ti8x ); DECLARE_DIRECT_UPDATE_MEMBER( ti83p_direct_update_handler ); - + ti83pse_timer m_ctimer[3]; - + //address_space &asic; }; diff --git a/src/mess/includes/victor9k.h b/src/mess/includes/victor9k.h index 088b5943ee2..08030027cdc 100644 --- a/src/mess/includes/victor9k.h +++ b/src/mess/includes/victor9k.h @@ -48,7 +48,7 @@ #define RS232_B_TAG "rs232b" #define SCREEN_TAG "screen" #define VICTOR9K_KEYBOARD_TAG "victor9kb" -#define FDC_TAG "fdc" +#define FDC_TAG "fdc" class victor9k_state : public driver_device { diff --git a/src/mess/includes/wswan.h b/src/mess/includes/wswan.h index 418b44f5021..391dd901b98 100644 --- a/src/mess/includes/wswan.h +++ b/src/mess/includes/wswan.h @@ -40,9 +40,9 @@ public: m_cart(*this, "cartslot"), m_cursx(*this, "CURSX"), m_cursy(*this, "CURSY"), - m_buttons(*this, "BUTTONS") + m_buttons(*this, "BUTTONS") { } - + required_device<cpu_device> m_maincpu; required_device<wswan_video_device> m_vdp; required_device<wswan_sound_device> m_sound; @@ -50,7 +50,7 @@ public: DECLARE_READ8_MEMBER(bios_r); DECLARE_READ8_MEMBER(port_r); DECLARE_WRITE8_MEMBER(port_w); - + UINT8 m_ws_portram[256]; UINT8 m_internal_eeprom[INTERNAL_EEPROM_SIZE]; UINT8 m_system_type; @@ -58,7 +58,7 @@ public: UINT8 *m_ws_bios_bank; UINT8 m_bios_disabled; UINT8 m_rotate; - + void set_irq_line(int irq); void dma_sound_cb(); void common_start(); @@ -67,7 +67,7 @@ public: DECLARE_PALETTE_INIT(wswan); DECLARE_MACHINE_START(wscolor); DECLARE_PALETTE_INIT(wscolor); - + protected: /* Interrupt flags */ static const UINT8 WSWAN_IFLAG_STX = 0x01; @@ -78,7 +78,7 @@ protected: static const UINT8 WSWAN_IFLAG_VBLTMR = 0x20; static const UINT8 WSWAN_IFLAG_VBL = 0x40; static const UINT8 WSWAN_IFLAG_HBLTMR = 0x80; - + /* Interrupts */ static const UINT8 WSWAN_INT_STX = 0; static const UINT8 WSWAN_INT_KEY = 1; @@ -88,11 +88,11 @@ protected: static const UINT8 WSWAN_INT_VBLTMR = 5; static const UINT8 WSWAN_INT_VBL = 6; static const UINT8 WSWAN_INT_HBLTMR = 7; - + required_ioport m_cursx; required_ioport m_cursy; required_ioport m_buttons; - + void register_save(); void handle_irqs(); void clear_irq_line(int irq); diff --git a/src/mess/includes/xerox820.h b/src/mess/includes/xerox820.h index 8de4a25daac..797e5689b6e 100644 --- a/src/mess/includes/xerox820.h +++ b/src/mess/includes/xerox820.h @@ -36,7 +36,7 @@ #define SASIBUS_TAG "sasi" #define RS232_A_TAG "rs232a" #define RS232_B_TAG "rs232b" -#define KEYBOARD_TAG "kb" +#define KEYBOARD_TAG "kb" #define XEROX820_VIDEORAM_SIZE 0x1000 #define XEROX820_VIDEORAM_MASK 0x0fff |
