diff options
Diffstat (limited to 'src/mame/includes')
-rw-r--r-- | src/mame/includes/blmbycar.h | 2 | ||||
-rw-r--r-- | src/mame/includes/glass.h | 4 | ||||
-rw-r--r-- | src/mame/includes/m5.h | 24 | ||||
-rw-r--r-- | src/mame/includes/overdriv.h | 2 |
4 files changed, 16 insertions, 16 deletions
diff --git a/src/mame/includes/blmbycar.h b/src/mame/includes/blmbycar.h index af7b6f120f4..4abc3c4f64c 100644 --- a/src/mame/includes/blmbycar.h +++ b/src/mame/includes/blmbycar.h @@ -64,7 +64,7 @@ public: DECLARE_MACHINE_RESET(blmbycar); DECLARE_MACHINE_START(watrball); DECLARE_MACHINE_RESET(watrball); - + UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); void draw_sprites( screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect ); }; diff --git a/src/mame/includes/glass.h b/src/mame/includes/glass.h index a3ae64203f5..f00434e7201 100644 --- a/src/mame/includes/glass.h +++ b/src/mame/includes/glass.h @@ -18,7 +18,7 @@ public: m_vregs(*this, "vregs"), m_spriteram(*this, "spriteram"), m_mainram(*this, "mainram") { } - + /* devices */ required_device<cpu_device> m_maincpu; @@ -54,7 +54,7 @@ public: virtual void machine_start() override; virtual void machine_reset() override; virtual void video_start() override; - + TILE_GET_INFO_MEMBER(get_tile_info_screen0); TILE_GET_INFO_MEMBER(get_tile_info_screen1); UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); diff --git a/src/mame/includes/m5.h b/src/mame/includes/m5.h index 9b5d82b0c00..16e346889e3 100644 --- a/src/mame/includes/m5.h +++ b/src/mame/includes/m5.h @@ -20,7 +20,7 @@ #define SCREEN_TAG "screen" //brno mod #define WD2797_TAG "5f" -#define RAMDISK "ramdisk" +#define RAMDISK "ramdisk" class m5_state : public driver_device @@ -96,7 +96,7 @@ public: UINT8 m_ram_mode; UINT8 m_ram_type; memory_region *m_cart_rom; - m5_cart_slot_device *m_cart_ram, *m_cart; + m5_cart_slot_device *m_cart_ram, *m_cart; // floppy state for fd5 UINT8 m_fd5_data; @@ -110,17 +110,17 @@ public: class brno_state : public m5_state { -public: +public: brno_state(const machine_config &mconfig, device_type type, const char *tag) : m5_state(mconfig, type, tag), - + m_fdc(*this, WD2797_TAG), m_floppy0(*this, WD2797_TAG":0"), m_floppy1(*this, WD2797_TAG":1") - // m_ramdisk(*this, RAMDISK) + // m_ramdisk(*this, RAMDISK) { } - + required_device<wd2797_t> m_fdc; required_device<floppy_connector> m_floppy0; optional_device<floppy_connector> m_floppy1; @@ -140,14 +140,14 @@ public: DECLARE_FLOPPY_FORMATS( floppy_formats ); -// DECLARE_WRITE_LINE_MEMBER( wd2797_intrq_w ); -// DECLARE_WRITE_LINE_MEMBER( wd2797_drq_w ); -// DECLARE_WRITE_LINE_MEMBER( wd2797_index_callback); +// DECLARE_WRITE_LINE_MEMBER( wd2797_intrq_w ); +// DECLARE_WRITE_LINE_MEMBER( wd2797_drq_w ); +// DECLARE_WRITE_LINE_MEMBER( wd2797_index_callback); //required_device<ram_device> m_ramdisk; DECLARE_DRIVER_INIT(brno); DECLARE_SNAPSHOT_LOAD_MEMBER( brno ); -// DECLARE_DEVICE_IMAGE_LOAD_MEMBER(m5_cart); +// DECLARE_DEVICE_IMAGE_LOAD_MEMBER(m5_cart); virtual void machine_start() override; @@ -157,9 +157,9 @@ public: UINT8 m_ramcpu; //where Ramdisk bank is mapped bool m_romen; bool m_ramen; - - UINT8 m_rammap[16]; // memory map + + UINT8 m_rammap[16]; // memory map }; #endif diff --git a/src/mame/includes/overdriv.h b/src/mame/includes/overdriv.h index 9b5cc1b2cd2..dcace237863 100644 --- a/src/mame/includes/overdriv.h +++ b/src/mame/includes/overdriv.h @@ -62,7 +62,7 @@ public: //INTERRUPT_GEN_MEMBER(cpuB_interrupt); TIMER_DEVICE_CALLBACK_MEMBER(overdriv_cpuA_scanline); int m_fake_timer; - + K051316_CB_MEMBER(zoom_callback_1); K051316_CB_MEMBER(zoom_callback_2); K053246_CB_MEMBER(sprite_callback); |