summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/msm6242.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/msm6242.c')
-rw-r--r--src/emu/machine/msm6242.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/emu/machine/msm6242.c b/src/emu/machine/msm6242.c
index f081cff0627..d11c00def79 100644
--- a/src/emu/machine/msm6242.c
+++ b/src/emu/machine/msm6242.c
@@ -252,11 +252,11 @@ WRITE8_MEMBER( msm6242_device::write )
case MSM6242_REG_CD:
{
/*
- x--- 30s ADJ
- -x-- IRQ FLAG
- --x- BUSY
- ---x HOLD
- */
+ x--- 30s ADJ
+ -x-- IRQ FLAG
+ --x- BUSY
+ ---x HOLD
+ */
m_reg[0] = data & 0x0f;
@@ -279,10 +279,10 @@ WRITE8_MEMBER( msm6242_device::write )
case MSM6242_REG_CE:
{
/*
- xx-- t0,t1 (timing irq)
- --x- STD
- ---x MASK
- */
+ xx-- t0,t1 (timing irq)
+ --x- STD
+ ---x MASK
+ */
m_reg[1] = data & 0x0f;
if((data & 3) == 0) // MASK & STD = 0
@@ -304,11 +304,11 @@ WRITE8_MEMBER( msm6242_device::write )
case MSM6242_REG_CF:
{
/*
- x--- TEST
- -x-- 24/12
- --x- STOP
- ---x RESET
- */
+ x--- TEST
+ -x-- 24/12
+ --x- STOP
+ ---x RESET
+ */
/* the 12/24 mode bit can only be changed when RESET does a 1 -> 0 transition */
if (((data & 0x01) == 0x00) && (m_reg[2] & 0x01))