summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/prot_kof2k3bl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo/prot_kof2k3bl.h')
-rw-r--r--src/devices/bus/neogeo/prot_kof2k3bl.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/neogeo/prot_kof2k3bl.h b/src/devices/bus/neogeo/prot_kof2k3bl.h
index 02debee0128..23bba22c89a 100644
--- a/src/devices/bus/neogeo/prot_kof2k3bl.h
+++ b/src/devices/bus/neogeo/prot_kof2k3bl.h
@@ -16,25 +16,25 @@ class kof2k3bl_prot_device : public device_t
{
public:
// construction/destruction
- kof2k3bl_prot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ kof2k3bl_prot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
DECLARE_READ16_MEMBER(protection_r);
DECLARE_WRITE16_MEMBER(kof2003_w);
DECLARE_WRITE16_MEMBER(kof2003p_w);
DECLARE_READ16_MEMBER(overlay_r);
- void bl_px_decrypt(UINT8* cpurom, UINT32 cpurom_size);
- void pl_px_decrypt(UINT8* cpurom, UINT32 cpurom_size);
- void upl_px_decrypt(UINT8* cpurom, UINT32 cpurom_size);
- UINT32 get_bank_base() {return m_bank_base; }
+ void bl_px_decrypt(uint8_t* cpurom, uint32_t cpurom_size);
+ void pl_px_decrypt(uint8_t* cpurom, uint32_t cpurom_size);
+ void upl_px_decrypt(uint8_t* cpurom, uint32_t cpurom_size);
+ uint32_t get_bank_base() {return m_bank_base; }
protected:
virtual void device_start() override;
virtual void device_reset() override;
private:
- UINT16 m_overlay;
- UINT32 m_bank_base;
- UINT16 m_cartridge_ram[0x1000]; // bootlegs
+ uint16_t m_overlay;
+ uint32_t m_bank_base;
+ uint16_t m_cartridge_ram[0x1000]; // bootlegs
};
#endif