diff options
Diffstat (limited to 'src/devices/bus/pofo/rom.h')
-rw-r--r-- | src/devices/bus/pofo/rom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/pofo/rom.h b/src/devices/bus/pofo/rom.h index 6ee7a1ffd04..65f1c3e28d7 100644 --- a/src/devices/bus/pofo/rom.h +++ b/src/devices/bus/pofo/rom.h @@ -27,7 +27,7 @@ class portfolio_rom_card_t : public device_t, { public: // construction/destruction - portfolio_rom_card_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + portfolio_rom_card_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); protected: // device-level overrides @@ -36,7 +36,7 @@ protected: // device_portfolio_memory_card_slot_interface overrides virtual bool cdet() override { return 0; } - virtual UINT8 nrdi_r(address_space &space, offs_t offset) override; + virtual uint8_t nrdi_r(address_space &space, offs_t offset) override; }; |