summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/coco12.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/coco12.cpp')
-rw-r--r--src/mame/machine/coco12.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/coco12.cpp b/src/mame/machine/coco12.cpp
index 61e1ca0c192..da49aad2c2f 100644
--- a/src/mame/machine/coco12.cpp
+++ b/src/mame/machine/coco12.cpp
@@ -32,10 +32,10 @@ void coco12_state::configure_sam()
uint8_t *rom = memregion(MAINCPU_TAG)->base();
uint8_t *cart_rom = cococart().get_cart_base();
- m_sam->configure_bank(0, ram().pointer(), ram().size(), false); // $0000-$7FFF
- m_sam->configure_bank(1, &rom[0x0000], 0x2000, true); // $8000-$9FFF
- m_sam->configure_bank(2, &rom[0x2000], 0x2000, true); // $A000-$BFFF
- m_sam->configure_bank(3, cart_rom, 0x4000, true); // $C000-$FEFF
+ m_sam->configure_bank(0, ram().pointer(), ram().size(), false); // $0000-$7FFF
+ m_sam->configure_bank(1, &rom[0x0000], 0x2000, true); // $8000-$9FFF
+ m_sam->configure_bank(2, &rom[0x2000], 0x2000, true); // $A000-$BFFF
+ m_sam->configure_bank(3, cart_rom, 0x4000, true); // $C000-$FEFF
// $FF00-$FF1F
m_sam->configure_bank(4, read8_delegate(FUNC(coco12_state::ff00_read), this), write8_delegate(FUNC(coco12_state::ff00_write), this));