diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/bus/neogeo/cmc.h | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/bus/neogeo/cmc.h')
-rw-r--r-- | src/devices/bus/neogeo/cmc.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/devices/bus/neogeo/cmc.h b/src/devices/bus/neogeo/cmc.h index 43ea32e097b..7ee808ad08c 100644 --- a/src/devices/bus/neogeo/cmc.h +++ b/src/devices/bus/neogeo/cmc.h @@ -13,8 +13,8 @@ class neogeo_cmc_cart : public neogeo_rom_device { public: // construction/destruction - neogeo_cmc_cart(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT16 clock, const char *shortname, const char *source); - neogeo_cmc_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT16 clock); + neogeo_cmc_cart(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint16_t clock, const char *shortname, const char *source); + neogeo_cmc_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint16_t clock); // device-level overrides virtual void device_start() override; @@ -41,7 +41,7 @@ extern const device_type NEOGEO_CMC_CART; class neogeo_cmc_zupapa_cart : public neogeo_cmc_cart { public: - neogeo_cmc_zupapa_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_zupapa_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -54,7 +54,7 @@ extern const device_type NEOGEO_CMC_ZUPAPA_CART; class neogeo_cmc_mslug3h_cart : public neogeo_cmc_cart { public: - neogeo_cmc_mslug3h_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_mslug3h_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -68,7 +68,7 @@ extern const device_type NEOGEO_CMC_MSLUG3H_CART; class neogeo_cmc_ganryu_cart : public neogeo_cmc_cart { public: - neogeo_cmc_ganryu_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_ganryu_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -81,7 +81,7 @@ extern const device_type NEOGEO_CMC_GANRYU_CART; class neogeo_cmc_s1945p_cart : public neogeo_cmc_cart { public: - neogeo_cmc_s1945p_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_s1945p_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -95,7 +95,7 @@ extern const device_type NEOGEO_CMC_S1945P_CART; class neogeo_cmc_preisle2_cart : public neogeo_cmc_cart { public: - neogeo_cmc_preisle2_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_preisle2_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -108,7 +108,7 @@ extern const device_type NEOGEO_CMC_PREISLE2_CART; class neogeo_cmc_bangbead_cart : public neogeo_cmc_cart { public: - neogeo_cmc_bangbead_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_bangbead_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -122,7 +122,7 @@ extern const device_type NEOGEO_CMC_BANGBEAD_CART; class neogeo_cmc_nitd_cart : public neogeo_cmc_cart { public: - neogeo_cmc_nitd_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_nitd_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -135,7 +135,7 @@ extern const device_type NEOGEO_CMC_NITD_CART; class neogeo_cmc_sengoku3_cart : public neogeo_cmc_cart { public: - neogeo_cmc_sengoku3_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_sengoku3_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -148,7 +148,7 @@ extern const device_type NEOGEO_CMC_SENGOKU3_CART; class neogeo_cmc_kof99k_cart : public neogeo_cmc_cart { public: - neogeo_cmc_kof99k_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_kof99k_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -161,7 +161,7 @@ extern const device_type NEOGEO_CMC_KOF99K_CART; class neogeo_cmc_kof2001_cart : public neogeo_cmc_cart { public: - neogeo_cmc_kof2001_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_kof2001_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } }; @@ -174,7 +174,7 @@ extern const device_type NEOGEO_CMC_KOF2001_CART; class neogeo_cmc_kof2000n_cart : public neogeo_cmc_cart { public: - neogeo_cmc_kof2000n_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_kof2000n_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 2; } }; @@ -188,7 +188,7 @@ extern const device_type NEOGEO_CMC_KOF2000N_CART; class neogeo_cmc_jockeygp_cart : public neogeo_cmc_cart { public: - neogeo_cmc_jockeygp_cart(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + neogeo_cmc_jockeygp_cart(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); virtual void decrypt_all(DECRYPT_ALL_PARAMS) override; virtual int get_fixed_bank_type(void) override { return 1; } @@ -199,7 +199,7 @@ public: virtual void device_reset() override; private: - UINT16 m_ram[0x1000]; + uint16_t m_ram[0x1000]; }; extern const device_type NEOGEO_CMC_JOCKEYGP_CART; |