summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/apollo.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-09 06:46:57 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-09 06:46:57 +0000
commitc6cd8a09c87f9830898b0c2eb236492b70f0c255 (patch)
treecf528302c3e6ea6ce70addf4a2a133c5115124a6 /src/mess/machine/apollo.c
parent8fb2921edb6e1c8146e6348972eb1d23df2fd093 (diff)
Cleanups and version bumpmame0148u3
Diffstat (limited to 'src/mess/machine/apollo.c')
-rw-r--r--src/mess/machine/apollo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/machine/apollo.c b/src/mess/machine/apollo.c
index 06876d24fdb..438ac166b43 100644
--- a/src/mess/machine/apollo.c
+++ b/src/mess/machine/apollo.c
@@ -507,7 +507,7 @@ WRITE8_MEMBER(apollo_state::apollo_dma_write_word){
READ8_MEMBER(apollo_state::apollo_dma8237_ctape_dack_r ) {
UINT8 data = sc499_dack_r(&space.machine());
-// DLOG2(("dma ctape dack read %02x",data));
+// DLOG2(("dma ctape dack read %02x",data));
// hack for DN3000: select appropriate DMA channel No.
dn3000_dma_channel1 = 1; // 1 = ctape, 2 = floppy dma channel
@@ -516,7 +516,7 @@ READ8_MEMBER(apollo_state::apollo_dma8237_ctape_dack_r ) {
}
WRITE8_MEMBER(apollo_state::apollo_dma8237_ctape_dack_w ) {
-// DLOG2(("dma ctape dack write %02x", data));
+// DLOG2(("dma ctape dack write %02x", data));
sc499_dack_w(&space.machine(), data);
// hack for DN3000: select appropriate DMA channel No.
@@ -578,7 +578,7 @@ WRITE_LINE_MEMBER(apollo_state::apollo_dma_2_hrq_changed ) {
// DLOG2(("dma 2 hrq changed state %02x", state));
machine().device(MAINCPU)->execute().set_input_line(INPUT_LINE_HALT, state ? ASSERT_LINE : CLEAR_LINE);
- /* Assert HLDA */
+ /* Assert HLDA */
dynamic_cast<i8237_device*>(machine().device(APOLLO_DMA2_TAG))->i8237_hlda_w(state);
}