From 90927b05c11c830bada7ffc002a4f4397c2a4b93 Mon Sep 17 00:00:00 2001 From: hap Date: Mon, 25 Jan 2021 16:26:47 +0100 Subject: softwarelist: spelling corrections related to microcabin's hurryfox --- hash/msx.hsi | 6 ++-- hash/msx1_cart.xml | 4 +-- hash/msx1_cass.xml | 2 +- hash/pc98.xml | 2 +- hash/x1_flop.xml | 2 +- src/devices/bus/msx_cart/hfox.cpp | 2 +- src/devices/cpu/mcs48/mcs48.h | 64 +++++++++++++++++++-------------------- 7 files changed, 41 insertions(+), 41 deletions(-) diff --git a/hash/msx.hsi b/hash/msx.hsi index 5e60b27e73b..c264586f486 100644 --- a/hash/msx.hsi +++ b/hash/msx.hsi @@ -1736,17 +1736,17 @@ license:CC0 Ascii 0 - + 1986 Micro Cabin 8 - + Micro Cabin 1985 5 - + 1985 Micro Cabin Not Playable diff --git a/hash/msx1_cart.xml b/hash/msx1_cart.xml index 59cce75f4a6..bb8cb0b4a6d 100644 --- a/hash/msx1_cart.xml +++ b/hash/msx1_cart.xml @@ -6137,7 +6137,7 @@ kept for now until finding out what those bytes affect... - + @@ -6154,7 +6154,7 @@ kept for now until finding out what those bytes affect... - + diff --git a/hash/msx1_cass.xml b/hash/msx1_cass.xml index 16772fcc898..d606a8a972c 100644 --- a/hash/msx1_cass.xml +++ b/hash/msx1_cass.xml @@ -6662,7 +6662,7 @@ license:CC0 - + diff --git a/hash/pc98.xml b/hash/pc98.xml index 839d37c1292..a1de80a91e4 100644 --- a/hash/pc98.xml +++ b/hash/pc98.xml @@ -23831,7 +23831,7 @@ only have some part of Windows file and a Video driver(CLGD?). - + diff --git a/hash/x1_flop.xml b/hash/x1_flop.xml index 6c0a110dea8..581125b3aff 100644 --- a/hash/x1_flop.xml +++ b/hash/x1_flop.xml @@ -1018,7 +1018,7 @@ Plus, some games crash MESS at exit (e.g. some sorcer disks or some arcus disks) - + diff --git a/src/devices/bus/msx_cart/hfox.cpp b/src/devices/bus/msx_cart/hfox.cpp index c08f0a0e1c0..007155b6e5b 100644 --- a/src/devices/bus/msx_cart/hfox.cpp +++ b/src/devices/bus/msx_cart/hfox.cpp @@ -4,7 +4,7 @@ #include "hfox.h" -DEFINE_DEVICE_TYPE(MSX_CART_HFOX, msx_cart_hfox_device, "msx_cart_hfox", "MSX Cartridge - Harry Fox") +DEFINE_DEVICE_TYPE(MSX_CART_HFOX, msx_cart_hfox_device, "msx_cart_hfox", "MSX Cartridge - Hurry Fox") msx_cart_hfox_device::msx_cart_hfox_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) diff --git a/src/devices/cpu/mcs48/mcs48.h b/src/devices/cpu/mcs48/mcs48.h index cb9725f704f..fa73d33e5b6 100644 --- a/src/devices/cpu/mcs48/mcs48.h +++ b/src/devices/cpu/mcs48/mcs48.h @@ -182,35 +182,35 @@ protected: clock_update_delegate m_t0_clk_func; devcb_write_line m_prog_out_cb; - uint16_t m_prevpc; /* 16-bit previous program counter */ - uint16_t m_pc; /* 16-bit program counter */ - - uint8_t m_a; /* 8-bit accumulator */ - uint8_t * m_regptr; /* pointer to r0-r7 */ - uint8_t m_psw; /* 8-bit PSW */ - bool m_f1; /* F1 flag (F0 is in PSW) */ - uint8_t m_p1; /* 8-bit latched port 1 */ - uint8_t m_p2; /* 8-bit latched port 2 */ - uint8_t m_ea; /* 1-bit latched ea input */ - uint8_t m_timer; /* 8-bit timer */ - uint8_t m_prescaler; /* 5-bit timer prescaler */ - uint8_t m_t1_history; /* 8-bit history of the T1 input */ - uint8_t m_sts; /* 4-bit status register + OBF/IBF flags (UPI-41 only) */ - uint8_t m_dbbi; /* 8-bit input data buffer (UPI-41 only) */ - uint8_t m_dbbo; /* 8-bit output data buffer (UPI-41 only) */ - - bool m_irq_state; /* true if the IRQ line is active */ - bool m_irq_polled; /* true if last instruction was JNI (and not taken) */ - bool m_irq_in_progress; /* true if an IRQ is in progress */ - bool m_timer_overflow; /* true on a timer overflow; cleared by taking interrupt */ - bool m_timer_flag; /* true on a timer overflow; cleared on JTF */ - bool m_tirq_enabled; /* true if the timer IRQ is enabled */ - bool m_xirq_enabled; /* true if the external IRQ is enabled */ - uint8_t m_timecount_enabled; /* bitmask of timer/counter enabled */ - bool m_flags_enabled; /* true if I/O flags have been enabled (UPI-41 only) */ - bool m_dma_enabled; /* true if DMA has been enabled (UPI-41 only) */ - - uint16_t m_a11; /* A11 value, either 0x000 or 0x800 */ + uint16_t m_prevpc; // 16-bit previous program counter + uint16_t m_pc; // 16-bit program counter + + uint8_t m_a; // 8-bit accumulator + uint8_t * m_regptr; // pointer to r0-r7 + uint8_t m_psw; // 8-bit PSW + bool m_f1; // F1 flag (F0 is in PSW) + uint8_t m_p1; // 8-bit latched port 1 + uint8_t m_p2; // 8-bit latched port 2 + uint8_t m_ea; // 1-bit latched ea input + uint8_t m_timer; // 8-bit timer + uint8_t m_prescaler; // 5-bit timer prescaler + uint8_t m_t1_history; // 8-bit history of the T1 input + uint8_t m_sts; // 4-bit status register + OBF/IBF flags (UPI-41 only) + uint8_t m_dbbi; // 8-bit input data buffer (UPI-41 only) + uint8_t m_dbbo; // 8-bit output data buffer (UPI-41 only) + + bool m_irq_state; // true if the IRQ line is active + bool m_irq_polled; // true if last instruction was JNI (and not taken) + bool m_irq_in_progress; // true if an IRQ is in progress + bool m_timer_overflow; // true on a timer overflow; cleared by taking interrupt + bool m_timer_flag; // true on a timer overflow; cleared on JTF + bool m_tirq_enabled; // true if the timer IRQ is enabled + bool m_xirq_enabled; // true if the external IRQ is enabled + uint8_t m_timecount_enabled; // bitmask of timer/counter enabled + bool m_flags_enabled; // true if I/O flags have been enabled (UPI-41 only) + bool m_dma_enabled; // true if DMA has been enabled (UPI-41 only) + + uint16_t m_a11; // A11 value, either 0x000 or 0x800 int m_icount; @@ -221,10 +221,10 @@ protected: required_shared_ptr m_dataptr; - uint8_t m_feature_mask; /* processor feature flags */ - uint16_t m_int_rom_size; /* internal rom size */ + uint8_t m_feature_mask; // processor feature flags + uint16_t m_int_rom_size; // internal rom size - uint8_t m_rtemp; /* temporary for import/export */ + uint8_t m_rtemp; // temporary for import/export static const mcs48_ophandler s_mcs48_opcodes[256]; static const mcs48_ophandler s_upi41_opcodes[256]; -- cgit v1.2.3