summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-04-24 14:14:49 +1000
committer Vas Crabb <vas@vastheman.com>2022-04-24 14:14:49 +1000
commit25c64006b7ca4bbb0d575b46c6c5c4f214dac7ed (patch)
tree6f0399117a96c25ad14dcd80990b0262a6953592 /src/mame/machine
parent6c247d5a92b46292ee54554b41df32f7a56372f3 (diff)
srcclean in preparation for 0.243
Diffstat (limited to 'src/mame/machine')
-rw-r--r--src/mame/machine/abc1600mac.cpp10
-rw-r--r--src/mame/machine/pc80s31k.cpp4
2 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/machine/abc1600mac.cpp b/src/mame/machine/abc1600mac.cpp
index 81190890414..991962e96e1 100644
--- a/src/mame/machine/abc1600mac.cpp
+++ b/src/mame/machine/abc1600mac.cpp
@@ -26,7 +26,7 @@
#define PAGE_WP BIT(page_data, 14)
#define PAGE_NONX BIT(page_data, 15)
-#define DMAOK 0x04
+#define DMAOK 0x04
@@ -596,7 +596,7 @@ uint8_t abc1600_mac_device::dma_mreq_r(int index, int dmamap, offs_t offset)
space().write_byte(virtual_offset, data);
}
- if (LOG_DMA) logerror("%s DMRQ R:%c %04x:%06x=%02x\n",
+ if (LOG_DMA) logerror("%s DMRQ R:%c %04x:%06x=%02x\n",
machine().describe_context(), rw ? 'R' : 'W', offset, virtual_offset, data);
return data;
@@ -612,7 +612,7 @@ void abc1600_mac_device::dma_mreq_w(int index, int dmamap, offs_t offset, uint8_
bool rw;
offs_t virtual_offset = get_dma_address(dmamap, offset, rw);
- if (LOG_DMA) logerror("%s DMRQ W:%c %04x:%06x=%02x\n",
+ if (LOG_DMA) logerror("%s DMRQ W:%c %04x:%06x=%02x\n",
machine().describe_context(), rw ? 'R' : 'W', offset, virtual_offset, data);
if (!rw)
@@ -631,7 +631,7 @@ uint8_t abc1600_mac_device::dma_iorq_r(int dmamap, offs_t offset)
bool rw;
offs_t virtual_offset = 0x1fe000 | get_dma_address(dmamap, offset, rw);
- if (LOG_DMA) logerror("%s DIORQ R %04x:%06x\n",
+ if (LOG_DMA) logerror("%s DIORQ R %04x:%06x\n",
machine().describe_context(), offset, virtual_offset);
return space().read_byte(virtual_offset);
@@ -647,7 +647,7 @@ void abc1600_mac_device::dma_iorq_w(int dmamap, offs_t offset, uint8_t data)
bool rw;
offs_t virtual_offset = 0x1fe000 | get_dma_address(dmamap, offset, rw);
- if (LOG_DMA) logerror("%s DIORQ W %04x:%06x=%02x\n",
+ if (LOG_DMA) logerror("%s DIORQ W %04x:%06x=%02x\n",
machine().describe_context(), offset, virtual_offset, data);
space().write_byte(virtual_offset, data);
diff --git a/src/mame/machine/pc80s31k.cpp b/src/mame/machine/pc80s31k.cpp
index 383745c3c89..bb3004c8204 100644
--- a/src/mame/machine/pc80s31k.cpp
+++ b/src/mame/machine/pc80s31k.cpp
@@ -30,8 +30,8 @@
\- It then tries to read at memory [0xc0ff], set the value read in [0xf012];
\- Expects that ROM [0x0000] is not equal to 0xc3;
Bottom line: Is it trying to access some custom HW?
- - Hookup a bridge for internal BIOSes (later PC8801 models);
- - Save state support (resuming fails latch hookups here);
+ - Hookup a bridge for internal BIOSes (later PC8801 models);
+ - Save state support (resuming fails latch hookups here);
===================================================================================================