diff options
author | 2015-12-13 11:23:55 +0100 | |
---|---|---|
committer | 2015-12-13 11:23:55 +0100 | |
commit | 4e580a77b9da9b78aba1fec8e44b1de5a4a14aaf (patch) | |
tree | df0e1d28daa79b9151088498a933cd1fc37c9c07 /src/devices/cpu/dsp56k/opcode.cpp | |
parent | 1cda42b22e591965ee69561fcf52272bd991b3b2 (diff) | |
parent | 14d5966a379e9783ba724750a5f84a72af62cadc (diff) |
Merge pull request #9 from mamedev/master
Sync to base master
Diffstat (limited to 'src/devices/cpu/dsp56k/opcode.cpp')
-rw-r--r-- | src/devices/cpu/dsp56k/opcode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/dsp56k/opcode.cpp b/src/devices/cpu/dsp56k/opcode.cpp index dd71d852650..37a7024b6e3 100644 --- a/src/devices/cpu/dsp56k/opcode.cpp +++ b/src/devices/cpu/dsp56k/opcode.cpp @@ -8,8 +8,8 @@ namespace DSP56K { Opcode::Opcode(UINT16 w0, UINT16 w1) : m_word0(w0)/*, m_word1(w1)*/ { - m_instruction.reset(Instruction::decodeInstruction(this, w0, w1)); - m_parallelMove.reset(ParallelMove::decodeParallelMove(this, w0, w1)); + m_instruction = Instruction::decodeInstruction(this, w0, w1); + m_parallelMove = ParallelMove::decodeParallelMove(this, w0, w1); } |