diff options
author | 2016-03-31 23:31:46 +0200 | |
---|---|---|
committer | 2016-04-01 02:28:15 +0200 | |
commit | 96c3921e81de8b3e9df7f47e7cf03fa5b4de71ea (patch) | |
tree | 834a2240671bb51889ec2af3722ca9f6a23fa3b8 /src/devices/bus/scsi | |
parent | 02db474ea5f3eac92fdd91fd9cc14d8dbf2a9174 (diff) |
Typo fix: controler → controller
Diffstat (limited to 'src/devices/bus/scsi')
-rw-r--r-- | src/devices/bus/scsi/s1410.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/scsi/s1410.cpp b/src/devices/bus/scsi/s1410.cpp index 59b964ce4f2..dba1e0bb7fd 100644 --- a/src/devices/bus/scsi/s1410.cpp +++ b/src/devices/bus/scsi/s1410.cpp @@ -205,7 +205,7 @@ s1410_device::s1410_device(const machine_config &mconfig, const char *tag, devic #define S1410_CMD_READ_SEC_BUFFER ( 0x10 ) #define S1410_CMD_RAM_DIAGS ( 0xe0 ) #define S1410_CMD_DRIVE_DIAGS ( 0xe3 ) -#define S1410_CMD_CONTROLER_DIAGS ( 0xe4 ) +#define S1410_CMD_CONTROLLER_DIAGS ( 0xe4 ) #define S1410_STATUS_NOT_READY ( 0x04 ) @@ -302,7 +302,7 @@ void s1410_device::ExecCommand() case S1410_CMD_CHECK_TRACK_FORMAT: case S1410_CMD_RAM_DIAGS: case S1410_CMD_DRIVE_DIAGS: - case S1410_CMD_CONTROLER_DIAGS: + case S1410_CMD_CONTROLLER_DIAGS: m_phase = SCSI_PHASE_STATUS; m_status_code = SCSI_STATUS_CODE_GOOD; m_transfer_length = 0; |