summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/newbrain.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-01-22 15:22:35 +1100
committer Vas Crabb <vas@vastheman.com>2017-01-22 15:37:37 +1100
commitedf64df1db1e1493e6980b79c38c4db744e23cea (patch)
treea26302d6f41d7de07e25372da5c5d46cdd893e8f /src/mame/drivers/newbrain.cpp
parent32ab35fa06fa81b0ceebb6e832858343bbc3f488 (diff)
srcclean (nw)
Diffstat (limited to 'src/mame/drivers/newbrain.cpp')
-rw-r--r--src/mame/drivers/newbrain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/newbrain.cpp b/src/mame/drivers/newbrain.cpp
index 0e4ab95b11b..8c1fe03c27c 100644
--- a/src/mame/drivers/newbrain.cpp
+++ b/src/mame/drivers/newbrain.cpp
@@ -31,8 +31,8 @@
TODO:
- - COPINT @ 84Hz instead of 50Hz? (with clock 3240506 is 50Hz)
- - CLKINT arrives too late and COP reads the VFD data before CPU writes it
+ - COPINT @ 84Hz instead of 50Hz? (with clock 3240506 is 50Hz)
+ - CLKINT arrives too late and COP reads the VFD data before CPU writes it
- VFD does not receive data from main CPU
- bitmapped video
- accurate video timing
@@ -270,7 +270,7 @@ WRITE8_MEMBER( newbrain_state::enrg_w )
// clock enable
int clk = BIT(data, 0);
-
+
if (m_clk != clk) {
m_clk = clk;
check_interrupt();
@@ -497,7 +497,7 @@ WRITE8_MEMBER( newbrain_state::cop_d_w )
if (!m_cop_k6 && k6) {
m_403_d = m_y[m_405_q & 0x0f]->read() & 0x0f;
-
+
if (LOG_COP) logerror("%s %s keydata %01x\n", machine().time().as_string(), machine().describe_context(), m_403_d);
}