diff options
author | 2010-08-19 15:40:06 +0000 | |
---|---|---|
committer | 2010-08-19 15:40:06 +0000 | |
commit | 9bbc2e2f00ac611c79969db389043cd035e4215d (patch) | |
tree | 04024437448c2f0cb498fc6b409f056df915fe6a /src/emu/cpu/dsp56k/pmove.c | |
parent | 44c78c4939eedf00ee351f300761ed60a2da0ea3 (diff) |
[no whatsnew] dsp56k : Weaning the core off std::strings.
(Sorry for jamming this in the middle of some major system changes.
It shouldn't collide much, if at all.)
Diffstat (limited to 'src/emu/cpu/dsp56k/pmove.c')
-rw-r--r-- | src/emu/cpu/dsp56k/pmove.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/dsp56k/pmove.c b/src/emu/cpu/dsp56k/pmove.c index 0e83f6a0dc2..37d60cc3a5e 100644 --- a/src/emu/cpu/dsp56k/pmove.c +++ b/src/emu/cpu/dsp56k/pmove.c @@ -3,8 +3,8 @@ namespace DSP56K { -const std::string& ParallelMove::opSource() const { return m_oco->instSource(); } -const std::string& ParallelMove::opDestination() const { return m_oco->instDestination(); } +const reg_id& ParallelMove::opSource() const { return m_oco->instSource(); } +const reg_id& ParallelMove::opDestination() const { return m_oco->instDestination(); } const size_t ParallelMove::opAccumulatorBitsModified() const { return m_oco->instAccumulatorBitsModified(); } @@ -12,7 +12,7 @@ ParallelMove* ParallelMove::decodeParallelMove(const Opcode* opc, const UINT16 w { const UINT16 w0 = word0; const UINT16 w1 = word1; - + /* Dual X Memory Data Read : 011m mKKK .rr. .... : A-142*/ if ((w0 & 0xe000) == 0x6000) { |