summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sh
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2024-02-25 01:56:09 +1100
committer Vas Crabb <vas@vastheman.com>2024-02-25 01:56:09 +1100
commit9827b7f54787ec833690b3e95c19191bbda36637 (patch)
tree3988048d0ebc6a7613f9b60c0c277f85abe15555 /src/devices/cpu/sh
parentcc621cca1dd15a30a42f1e149a7bd550e0073965 (diff)
srcclean and manual cleanup in preparation for 0.263 release.
Diffstat (limited to 'src/devices/cpu/sh')
-rw-r--r--src/devices/cpu/sh/sh7042.cpp2
-rw-r--r--src/devices/cpu/sh/sh7042.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/sh/sh7042.cpp b/src/devices/cpu/sh/sh7042.cpp
index 5a468b85969..35f559b47ce 100644
--- a/src/devices/cpu/sh/sh7042.cpp
+++ b/src/devices/cpu/sh/sh7042.cpp
@@ -84,7 +84,7 @@ u8 sh7042_device::adcr_r()
void sh7042_device::adcsr_w(u8 data)
{
logerror("adcsr_w %02x\n", data);
- // u8 prev = m_adcsr;
+ // u8 prev = m_adcsr;
m_adcsr = (data & 0x7f) | (m_adcsr & data & CSR_ADF);
}
diff --git a/src/devices/cpu/sh/sh7042.h b/src/devices/cpu/sh/sh7042.h
index 9c73063d4a6..dabcb7c272b 100644
--- a/src/devices/cpu/sh/sh7042.h
+++ b/src/devices/cpu/sh/sh7042.h
@@ -59,7 +59,7 @@ private:
u8 adcr_r();
void adcsr_w(u8 data);
void adcr_w(u8 data);
-
+
void do_sci_w(int sci, int state);
};