summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo/prot_pvc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo/prot_pvc.h')
-rw-r--r--src/devices/bus/neogeo/prot_pvc.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/devices/bus/neogeo/prot_pvc.h b/src/devices/bus/neogeo/prot_pvc.h
index e14983c197a..d5bfee9bf2f 100644
--- a/src/devices/bus/neogeo/prot_pvc.h
+++ b/src/devices/bus/neogeo/prot_pvc.h
@@ -16,22 +16,22 @@ class pvc_prot_device : public device_t
{
public:
// construction/destruction
- pvc_prot_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ pvc_prot_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
void pvc_write_unpack_color();
void pvc_write_pack_color();
// void pvc_write_bankswitch(address_space &space);
- UINT32 get_bank_base();
+ uint32_t get_bank_base();
DECLARE_READ16_MEMBER(protection_r);
DECLARE_WRITE16_MEMBER(protection_w);
- UINT16 m_cart_ram[0x1000];
+ uint16_t m_cart_ram[0x1000];
- void mslug5_decrypt_68k(UINT8* rom, UINT32 size);
- void svc_px_decrypt(UINT8* rom, UINT32 size);
- void kf2k3pcb_decrypt_68k(UINT8* rom, UINT32 size);
- void kof2003_decrypt_68k(UINT8* rom, UINT32 size);
- void kof2003h_decrypt_68k(UINT8* rom, UINT32 size);
+ void mslug5_decrypt_68k(uint8_t* rom, uint32_t size);
+ void svc_px_decrypt(uint8_t* rom, uint32_t size);
+ void kf2k3pcb_decrypt_68k(uint8_t* rom, uint32_t size);
+ void kof2003_decrypt_68k(uint8_t* rom, uint32_t size);
+ void kof2003h_decrypt_68k(uint8_t* rom, uint32_t size);
protected:
virtual void device_start() override;