summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/dsp56k/opcode.h
diff options
context:
space:
mode:
author Andrew Gardner <andrew-gardner@users.noreply.github.com>2010-08-19 15:40:06 +0000
committer Andrew Gardner <andrew-gardner@users.noreply.github.com>2010-08-19 15:40:06 +0000
commit9bbc2e2f00ac611c79969db389043cd035e4215d (patch)
tree04024437448c2f0cb498fc6b409f056df915fe6a /src/emu/cpu/dsp56k/opcode.h
parent44c78c4939eedf00ee351f300761ed60a2da0ea3 (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/opcode.h')
-rw-r--r--src/emu/cpu/dsp56k/opcode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/dsp56k/opcode.h b/src/emu/cpu/dsp56k/opcode.h
index 6ab83d39f9a..710cc27844a 100644
--- a/src/emu/cpu/dsp56k/opcode.h
+++ b/src/emu/cpu/dsp56k/opcode.h
@@ -30,10 +30,10 @@ public:
size_t evalSize() const;
// Peek through to the instruction
- const std::string& instSource() const;
- const std::string& instDestination() const;
+ const reg_id& instSource() const;
+ const reg_id& instDestination() const;
const size_t instAccumulatorBitsModified() const;
-
+
private:
Instruction* m_instruction;
ParallelMove* m_parallelMove;