summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2019-06-12 02:38:07 +0200
committer hap <happppp@users.noreply.github.com>2019-06-12 02:38:07 +0200
commit1b3acb851d0dee9776a53ec843d54f429076bd34 (patch)
tree335c84a536847d50c001c639367ef74e432d6063
parent6e59afa0473c5815da5bfccbb3bf2824f7c4a837 (diff)
spacing (nw)
-rw-r--r--src/devices/bus/vectrex/rom.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/vectrex/rom.cpp b/src/devices/bus/vectrex/rom.cpp
index e9651909846..8f93c87f6fd 100644
--- a/src/devices/bus/vectrex/rom.cpp
+++ b/src/devices/bus/vectrex/rom.cpp
@@ -53,9 +53,9 @@ void vectrex_rom64k_device::device_start()
void vectrex_rom64k_device::device_reset()
{
- //Resetting to 1 instead of 0 fixes 64KiB cartridges that don't have a workaround
- //for the fact that MAME does not currently emulate the pull-up resistor on the 6522's PB6 line.
- //TODO: correctly emulate PB6 pull-up behavior (line should be high whenever PB6 set to input).
+ // Resetting to 1 instead of 0 fixes 64KiB cartridges that don't have a workaround
+ // for the fact that MAME does not currently emulate the pull-up resistor on the 6522's PB6 line.
+ // TODO: correctly emulate PB6 pull-up behavior (line should be high whenever PB6 set to input).
m_bank = 1;
}