summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/sgi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/sgi.cpp')
-rw-r--r--src/mame/machine/sgi.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/machine/sgi.cpp b/src/mame/machine/sgi.cpp
index fd605fb03a5..629aa753a77 100644
--- a/src/mame/machine/sgi.cpp
+++ b/src/mame/machine/sgi.cpp
@@ -210,14 +210,14 @@ void sgi_mc_device::dma_tick()
{
uint32_t addr = m_dma_mem_addr;
if (m_dma_control & (1 << 8))
- { // Enable virtual address translation
+ { // Enable virtual address translation
addr = dma_translate(addr);
}
if (m_dma_mode & (1 << 1))
- { // Graphics to host
+ { // Graphics to host
if (m_dma_mode & (1 << 3))
- { // Fill mode
+ { // Fill mode
m_space->write_dword(addr, m_dma_gio64_addr);
m_dma_count -= 4;
}
@@ -242,7 +242,7 @@ void sgi_mc_device::dma_tick()
}
}
else
- { // Host to graphics
+ { // Host to graphics
const uint32_t remaining = m_dma_count & 0x0000ffff;
uint32_t length = 8;
uint64_t shift = 56;
@@ -263,14 +263,14 @@ void sgi_mc_device::dma_tick()
}
if ((m_dma_count & 0x0000ffff) == 0)
- { // If remaining byte count is 0, deduct zoom count
+ { // If remaining byte count is 0, deduct zoom count
m_dma_count -= 0x00010000;
if (m_dma_count == 0)
- { // If remaining zoom count is also 0, move to next line
+ { // If remaining zoom count is also 0, move to next line
m_dma_mem_addr += m_dma_stride & 0x0000ffff;
m_dma_size -= 0x00010000;
if ((m_dma_size & 0xffff0000) == 0)
- { // If no remaining lines, DMA is done.
+ { // If no remaining lines, DMA is done.
m_dma_timer->adjust(attotime::never);
m_dma_run |= (1 << 3);
m_dma_run &= ~(1 << 6);
@@ -285,7 +285,7 @@ void sgi_mc_device::dma_tick()
}
}
else
- { // If remaining zoom count is non-zero, reload byte count and return source address to the beginning of the line.
+ { // If remaining zoom count is non-zero, reload byte count and return source address to the beginning of the line.
m_dma_count |= m_dma_size & 0x0000ffff;
m_dma_mem_addr -= m_dma_size & 0x0000ffff;
}