summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2020-08-08 13:02:33 -0400
committer arbee <rb6502@users.noreply.github.com>2020-08-08 13:02:33 -0400
commit7df1f8de267056a33a0a14ea11ebc6e5bc6a1a0a (patch)
treef82153c0507c9d33af7cb95a52f4ba246129163d /src/devices/bus
parent24e40bc93222bc19d4613215fbcb9ee4abc74ff1 (diff)
apple2: Clean up CMS SCSI II support and naming [R. Belmont]
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/a2bus/cmsscsi.cpp6
-rw-r--r--src/devices/bus/a2bus/cmsscsi.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/a2bus/cmsscsi.cpp b/src/devices/bus/a2bus/cmsscsi.cpp
index 900ae7f4d33..273b922eb78 100644
--- a/src/devices/bus/a2bus/cmsscsi.cpp
+++ b/src/devices/bus/a2bus/cmsscsi.cpp
@@ -4,7 +4,7 @@
cmsscsi.cpp
- Implementation of the CMS Apple II SCSI Card
+ Implementation of the CMS SCSI II Card
Details:
ROM is $2000 bytes. The last $800 bytes are 7 slot images at
@@ -38,7 +38,7 @@
// GLOBAL VARIABLES
//**************************************************************************
-DEFINE_DEVICE_TYPE(A2BUS_CMSSCSI, a2bus_cmsscsi_device, "cmsscsi", "CMS Apple II SCSI Card")
+DEFINE_DEVICE_TYPE(A2BUS_CMSSCSI, a2bus_cmsscsi_device, "cmsscsi", "CMS SCSI II Card")
#define SCSI_ROM_REGION "scsi_rom"
#define SCSI_BUS_TAG "scsibus"
@@ -162,7 +162,7 @@ uint8_t a2bus_cmsscsi_device::read_c0nx(uint8_t offset)
return 0;
default:
- printf("Read c0n%x (%s)\n", offset, machine().describe_context().c_str());
+ logerror("Read c0n%x (%s)\n", offset, machine().describe_context().c_str());
break;
}
diff --git a/src/devices/bus/a2bus/cmsscsi.h b/src/devices/bus/a2bus/cmsscsi.h
index 0171831053c..5fc9b43fe93 100644
--- a/src/devices/bus/a2bus/cmsscsi.h
+++ b/src/devices/bus/a2bus/cmsscsi.h
@@ -4,7 +4,7 @@
cmsscsi.h
- Implementation of the CMS Apple II SCSI Card
+ Implementation of the CMS SCSI II Card
*********************************************************************/