diff options
author | 2018-03-15 18:06:10 +0100 | |
---|---|---|
committer | 2018-03-15 18:07:39 +0100 | |
commit | bb11fbd2bd66ad45571146ec5a660f5775949ef1 (patch) | |
tree | 1fd5b5e6bfed24d4d86ebe18c28bc1b82335733d /src/devices/cpu/sh | |
parent | ba278b8f03a6affbaf87da6f533f85ee5cd6f7a9 (diff) |
Blind faith fixed long names for almost all CPUs (nw)
mb86235.cpp: renamed pcs_ptr into pcp, and added a file for future interpreter core (nw)
Diffstat (limited to 'src/devices/cpu/sh')
-rw-r--r-- | src/devices/cpu/sh/sh2.cpp | 6 | ||||
-rw-r--r-- | src/devices/cpu/sh/sh4.cpp | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/cpu/sh/sh2.cpp b/src/devices/cpu/sh/sh2.cpp index 7626cc0c74e..bf68177a10b 100644 --- a/src/devices/cpu/sh/sh2.cpp +++ b/src/devices/cpu/sh/sh2.cpp @@ -104,9 +104,9 @@ -DEFINE_DEVICE_TYPE(SH1, sh1_device, "sh1", "SH-1") -DEFINE_DEVICE_TYPE(SH2, sh2_device, "sh2", "SH-2") -DEFINE_DEVICE_TYPE(SH2A, sh2a_device, "sh21", "SH-2A") +DEFINE_DEVICE_TYPE(SH1, sh1_device, "sh1", "Hitachi SH-1") +DEFINE_DEVICE_TYPE(SH2, sh2_device, "sh2", "Hitachi SH-2") +DEFINE_DEVICE_TYPE(SH2A, sh2a_device, "sh21", "Hitachi SH-2A") /*------------------------------------------------- sh2_internal_a5 - read handler for diff --git a/src/devices/cpu/sh/sh4.cpp b/src/devices/cpu/sh/sh4.cpp index 680494d5000..2cc4260559f 100644 --- a/src/devices/cpu/sh/sh4.cpp +++ b/src/devices/cpu/sh/sh4.cpp @@ -34,10 +34,10 @@ #include "debugger.h" -DEFINE_DEVICE_TYPE(SH3LE, sh3_device, "sh3le", "SH-3 (little)") -DEFINE_DEVICE_TYPE(SH3BE, sh3be_device, "sh3be", "SH-3 (big)") -DEFINE_DEVICE_TYPE(SH4LE, sh4_device, "sh4le", "SH-4 (little)") -DEFINE_DEVICE_TYPE(SH4BE, sh4be_device, "sh4be", "SH-4 (big)") +DEFINE_DEVICE_TYPE(SH3LE, sh3_device, "sh3le", "Hitachi SH-3 (little)") +DEFINE_DEVICE_TYPE(SH3BE, sh3be_device, "sh3be", "Hitachi SH-3 (big)") +DEFINE_DEVICE_TYPE(SH4LE, sh4_device, "sh4le", "Hitachi SH-4 (little)") +DEFINE_DEVICE_TYPE(SH4BE, sh4be_device, "sh4be", "Hitachi SH-4 (big)") #if 0 |