diff options
author | 2024-06-27 05:31:14 +1000 | |
---|---|---|
committer | 2024-06-27 05:31:14 +1000 | |
commit | b962c2d157c29718819a6ad1b0c50ac22ed60fbf (patch) | |
tree | 30ebe574574bafc8887f755c3c20664a395b6ec2 /src/devices/cpu/dsp56156 | |
parent | bb6daaea1051cead7ea7926eb3e7b35f17393f6f (diff) |
Various fixes:
* challenge_gear_cart.xml: Use title from cartridge label, also shown on
boot screen.
* sgi_mips.xml: Marked NetBSD install media as unsupported as it can't
be installed (doesn't recognise hard disk).
* spectrum_cass.xml: Consistent description format for Bruxólico demos.
* cpu/dsp56156, cpu/z80: Fixed prefix header inclusion (or lack
thereof).
* bandai/wswan.cpp: Marked Pocket Challenge V2 software list as
original.
* tomy/tomy_princ.cpp: Blank line between ROM definitions.
Diffstat (limited to 'src/devices/cpu/dsp56156')
-rw-r--r-- | src/devices/cpu/dsp56156/inst.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/devices/cpu/dsp56156/inst.cpp b/src/devices/cpu/dsp56156/inst.cpp index 339156aa35e..c091659ba67 100644 --- a/src/devices/cpu/dsp56156/inst.cpp +++ b/src/devices/cpu/dsp56156/inst.cpp @@ -2,10 +2,9 @@ // copyright-holders:Andrew Gardner #include "emu.h" #include "inst.h" -#include "emu.h" -namespace DSP_56156 -{ +namespace DSP_56156 { + // Factory std::unique_ptr<Instruction> Instruction::decodeInstruction(const Opcode* opc, const uint16_t word0, @@ -783,4 +782,4 @@ std::unique_ptr<Instruction> Instruction::decodeInstruction(const Opcode* opc, return nullptr; } -} +} // namespace DSP_56156 |