summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/interpro/sr/edge.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-09-01 17:58:02 +1000
committer Vas Crabb <vas@vastheman.com>2018-09-01 17:58:02 +1000
commit0a7bff141709aff17a8db59f8e63efa16c401b66 (patch)
tree43175a2c37f0af8fa7f1ef1be427c2d2f98b6e3f /src/devices/bus/interpro/sr/edge.cpp
parent24790c95ce735247f2ef78c059cc0e9f8eb7d46a (diff)
Details, details (nw)
* It's generally not a great idea to do integer ops on bool - it implicitly casts to/from int and may perform poorly * Get rid of required ram_device in atari 8-bit common state - it isn't required/used by bartop52 * Get rid of bogus RAM device in bartop52 * Restore some authors' stylistic choices * Make some stuff more consistent
Diffstat (limited to 'src/devices/bus/interpro/sr/edge.cpp')
-rw-r--r--src/devices/bus/interpro/sr/edge.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/bus/interpro/sr/edge.cpp b/src/devices/bus/interpro/sr/edge.cpp
index 55d31fbc42a..3e6252fc556 100644
--- a/src/devices/bus/interpro/sr/edge.cpp
+++ b/src/devices/bus/interpro/sr/edge.cpp
@@ -468,8 +468,8 @@ MACHINE_CONFIG_START(mpcb828_device::device_add_mconfig)
MCFG_SCREEN_UPDATE_DEVICE(DEVICE_SELF, mpcb828_device, screen_update)
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(DEVICE_SELF, mpcb828_device, vblank))
- RAM(config, "sram").set_default_size("128K").set_default_value(0);
- RAM(config, "vram").set_default_size("2560K").set_default_value(0);
+ RAM(config, "sram").set_default_size("128KiB").set_default_value(0);
+ RAM(config, "vram").set_default_size("2560KiB").set_default_value(0);
MCFG_DEVICE_ADD("dsp", TMS32030, 1) // 30_MHz_XTAL
MCFG_TMS3203X_HOLDA_CB(WRITELINE(DEVICE_SELF, mpcb828_device, holda))
@@ -498,8 +498,8 @@ MACHINE_CONFIG_START(mpcb849_device::device_add_mconfig)
MCFG_SCREEN_UPDATE_DEVICE(DEVICE_SELF, mpcb849_device, screen_update)
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(DEVICE_SELF, device_srx_card_interface, irq3))
- RAM(config, "sram").set_default_size("128K").set_default_value(0);
- RAM(config, "vram").set_default_size("5120K").set_default_value(0); // size is a guess
+ RAM(config, "sram").set_default_size("128KiB").set_default_value(0);
+ RAM(config, "vram").set_default_size("5120KiB").set_default_value(0); // size is a guess
MCFG_DEVICE_ADD("dsp", TMS32030, 1) // 30_MHz_XTAL
MCFG_TMS3203X_HOLDA_CB(WRITELINE(DEVICE_SELF, mpcb828_device, holda))
@@ -549,7 +549,7 @@ MACHINE_CONFIG_START(msmt094_device::device_add_mconfig)
MCFG_TMS3203X_HOLDA_CB(WRITELINE(DEVICE_SELF, msmt094_device, holda))
MCFG_DEVICE_ADDRESS_MAP(0, dsp1_map)
- RAM(config, "ram").set_default_size("6M").set_default_value(0);
+ RAM(config, "ram").set_default_size("6MiB").set_default_value(0);
//MCFG_DEVICE_ADD("dsp2", TMS32030, 40_MHz_XTAL)
//MCFG_DEVICE_ADD("dsp3", TMS32030, 40_MHz_XTAL)
@@ -568,8 +568,8 @@ MACHINE_CONFIG_START(mpcb896_device::device_add_mconfig)
MCFG_SCREEN_UPDATE_DEVICE(DEVICE_SELF, mpcb896_device, screen_update)
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE(DEVICE_SELF, device_srx_card_interface, irq3))
- RAM(config, "sram").set_default_size("256K").set_default_value(0);
- RAM(config, "vram").set_default_size("18M").set_default_value(0);
+ RAM(config, "sram").set_default_size("256KiB").set_default_value(0);
+ RAM(config, "vram").set_default_size("18MiB").set_default_value(0);
MCFG_DEVICE_ADD("ramdac0", BT457, 164'609'300)
MCFG_DEVICE_ADD("ramdac1", BT457, 164'609'300)