summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/t11/t11.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/t11/t11.c')
-rw-r--r--src/emu/cpu/t11/t11.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/cpu/t11/t11.c b/src/emu/cpu/t11/t11.c
index ab21aac98bf..6c859524803 100644
--- a/src/emu/cpu/t11/t11.c
+++ b/src/emu/cpu/t11/t11.c
@@ -41,7 +41,7 @@ const device_type T11 = &device_creator<t11_device>;
t11_device::t11_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: cpu_device(mconfig, T11, "T11", tag, owner, clock, "t11", __FILE__)
, m_program_config("program", ENDIANNESS_LITTLE, 16, 16, 0)
- , c_initial_mode(0)
+ , c_initial_mode(0)
{
m_is_octal = true;
}
@@ -379,4 +379,3 @@ offs_t t11_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *opro
extern CPU_DISASSEMBLE( t11 );
return CPU_DISASSEMBLE_NAME(t11)(this, buffer, pc, oprom, opram, options);
}
-