summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/boot_kof10th.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo/boot_kof10th.h')
-rw-r--r--src/devices/bus/neogeo/boot_kof10th.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/neogeo/boot_kof10th.h b/src/devices/bus/neogeo/boot_kof10th.h
index 0303e4f35d8..0ba5c0ee2a1 100644
--- a/src/devices/bus/neogeo/boot_kof10th.h
+++ b/src/devices/bus/neogeo/boot_kof10th.h
@@ -13,7 +13,7 @@ class neogeo_kof10th_cart : public neogeo_bootleg_cart
{
public:
// construction/destruction
- neogeo_kof10th_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT16 clock);
+ neogeo_kof10th_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint16_t clock);
// device-level overrides
virtual void device_start() override;
@@ -21,9 +21,9 @@ public:
virtual machine_config_constructor device_mconfig_additions() const override;
// reading and writing
- virtual UINT16 get_helper() override;
- virtual UINT32 get_bank_base(UINT16 sel) override;
- virtual UINT32 get_special_bank() override;
+ virtual uint16_t get_helper() override;
+ virtual uint32_t get_bank_base(uint16_t sel) override;
+ virtual uint32_t get_special_bank() override;
virtual DECLARE_READ16_MEMBER(addon_r) override;
virtual DECLARE_READ16_MEMBER(protection_r) override;
virtual DECLARE_WRITE16_MEMBER(protection_w) override;
@@ -32,10 +32,10 @@ public:
virtual int get_fixed_bank_type(void) override { return 0; }
private:
- UINT8* m_fixed;
- UINT32 m_special_bank;
- UINT16 m_cart_ram[0x1000];
- UINT16 m_cart_ram2[0x10000];
+ uint8_t* m_fixed;
+ uint32_t m_special_bank;
+ uint16_t m_cart_ram[0x1000];
+ uint16_t m_cart_ram2[0x10000];
};
// device type definition