summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_cart/cartridge.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_cart/cartridge.cpp')
-rw-r--r--src/devices/bus/msx_cart/cartridge.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/msx_cart/cartridge.cpp b/src/devices/bus/msx_cart/cartridge.cpp
index 7f990101a08..4dae6ac0471 100644
--- a/src/devices/bus/msx_cart/cartridge.cpp
+++ b/src/devices/bus/msx_cart/cartridge.cpp
@@ -75,25 +75,25 @@ msx_cart_interface::msx_cart_interface(const machine_config &mconfig, device_t &
{
}
-void msx_cart_interface::rom_alloc(UINT32 size)
+void msx_cart_interface::rom_alloc(uint32_t size)
{
m_rom.resize(size);
memset(&m_rom[0], 0xff, size);
}
-void msx_cart_interface::rom_vlm5030_alloc(UINT32 size)
+void msx_cart_interface::rom_vlm5030_alloc(uint32_t size)
{
m_rom_vlm5030.resize(size);
memset(&m_rom_vlm5030[0], 0xff, size);
}
-void msx_cart_interface::ram_alloc(UINT32 size)
+void msx_cart_interface::ram_alloc(uint32_t size)
{
m_ram.resize(size);
memset(&m_ram[0], 0x00, size);
}
-void msx_cart_interface::sram_alloc(UINT32 size)
+void msx_cart_interface::sram_alloc(uint32_t size)
{
m_sram.resize(size);
memset(&m_sram[0], 0x00, size);