From 9554cc7cb2078b7a2d15b0e9cfb918aa0dc4401a Mon Sep 17 00:00:00 2001 From: hap Date: Wed, 28 Apr 2021 12:16:23 +0200 Subject: fmtowns: fix typo on prev commit --- src/devices/cpu/alto2/alto2cpu.cpp | 12 ++++++------ src/mame/drivers/fmtowns.cpp | 2 +- src/mame/drivers/metlclsh.cpp | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/devices/cpu/alto2/alto2cpu.cpp b/src/devices/cpu/alto2/alto2cpu.cpp index f5669884a3a..8506e946882 100644 --- a/src/devices/cpu/alto2/alto2cpu.cpp +++ b/src/devices/cpu/alto2/alto2cpu.cpp @@ -1257,42 +1257,42 @@ void alto2_cpu_device::watch_write(uint32_t addr, uint32_t data) } #endif -/** @brief fatal exit on unitialized dynamic phase BUS source */ +/** @brief fatal exit on uninitialized dynamic phase BUS source */ void alto2_cpu_device::bs_early_bad() { throw emu_fatalerror(9,"fatal: bad early bus source pointer for task %s, mpc:%05o bs:%s\n", task_name(m_task), m_mpc, bs_name(bs())); } -/** @brief fatal exit on unitialized latching phase BUS source */ +/** @brief fatal exit on uninitialized latching phase BUS source */ void alto2_cpu_device::bs_late_bad() { throw emu_fatalerror(9,"fatal: bad late bus source pointer for task %s, mpc:%05o bs: %s\n", task_name(m_task), m_mpc, bs_name(bs())); } -/** @brief fatal exit on unitialized dynamic phase F1 function */ +/** @brief fatal exit on uninitialized dynamic phase F1 function */ void alto2_cpu_device::f1_early_bad() { throw emu_fatalerror(9,"fatal: bad early f1 function pointer for task %s, mpc:%05o f1: %s\n", task_name(m_task), m_mpc, f1_name(f1())); } -/** @brief fatal exit on unitialized latching phase F1 function */ +/** @brief fatal exit on uninitialized latching phase F1 function */ void alto2_cpu_device::f1_late_bad() { throw emu_fatalerror(9,"fatal: bad late f1 function pointer for task %s, mpc:%05o f1: %s\n", task_name(m_task), m_mpc, f1_name(f1())); } -/** @brief fatal exit on unitialized dynamic phase F2 function */ +/** @brief fatal exit on uninitialized dynamic phase F2 function */ void alto2_cpu_device::f2_early_bad() { throw emu_fatalerror(9,"fatal: bad early f2 function pointer for task %s, mpc:%05o f2: %s\n", task_name(m_task), m_mpc, f2_name(f2())); } -/** @brief fatal exit on unitialized latching phase F2 function */ +/** @brief fatal exit on uninitialized latching phase F2 function */ void alto2_cpu_device::f2_late_bad() { throw emu_fatalerror(9,"fatal: bad late f2 function pointer for task %s, mpc:%05o f2: %s\n", diff --git a/src/mame/drivers/fmtowns.cpp b/src/mame/drivers/fmtowns.cpp index f86b7f7ea0c..f4188edcea7 100644 --- a/src/mame/drivers/fmtowns.cpp +++ b/src/mame/drivers/fmtowns.cpp @@ -2762,7 +2762,7 @@ void towns_state::machine_start() if (m_flop[1]->get_device()) m_flop[1]->get_device()->set_rpm(360); - // unitialized PCM RAM filled with 0xff (fmtmarty chasehq relies on that) + // uninitialized PCM RAM filled with 0xff (fmtmarty chasehq relies on that) address_space &space = subdevice("pcm")->space(0); for (int i = 0; i < 0x10000; i++) space.write_byte(i, 0xff); diff --git a/src/mame/drivers/metlclsh.cpp b/src/mame/drivers/metlclsh.cpp index 0e0dacd199f..ce96ab4883a 100644 --- a/src/mame/drivers/metlclsh.cpp +++ b/src/mame/drivers/metlclsh.cpp @@ -27,7 +27,7 @@ To Do: metlclsh: - Clocks are all unknown - Text on the title screen has wrong colors the first time around - (unitialized foreground palette 1, will be initialized shortly) + (uninitialized foreground palette 1, will be initialized shortly) - The background tilemap ram is bankswitched with other (not understood) ram - There are a few unknown writes -- cgit v1.2.3