summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/pofo/ram.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/pofo/ram.h')
-rw-r--r--src/devices/bus/pofo/ram.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/pofo/ram.h b/src/devices/bus/pofo/ram.h
index 2bf6bed60f0..2b0cf2722ba 100644
--- a/src/devices/bus/pofo/ram.h
+++ b/src/devices/bus/pofo/ram.h
@@ -29,7 +29,7 @@ class portfolio_ram_card_t : public device_t,
{
public:
// construction/destruction
- portfolio_ram_card_t(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ portfolio_ram_card_t(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
protected:
// device-level overrides
@@ -43,8 +43,8 @@ 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 void nwri_w(address_space &space, offs_t offset, UINT8 data) override;
+ virtual uint8_t nrdi_r(address_space &space, offs_t offset) override;
+ virtual void nwri_w(address_space &space, offs_t offset, uint8_t data) override;
};