diff options
author | 2020-01-31 14:53:46 +1100 | |
---|---|---|
committer | 2020-01-31 14:53:46 +1100 | |
commit | 3536bbdd7167b3982deca3e91960658ac620fdf1 (patch) | |
tree | 2c7ebf9e8c7a0736ae68a9231de1e2420f0c5da5 /src/devices/cpu/uml.cpp | |
parent | a984b33ada3bf472333e178a68fdb160faf3151f (diff) |
there are reasons for things being the way they were (nw)
Diffstat (limited to 'src/devices/cpu/uml.cpp')
-rw-r--r-- | src/devices/cpu/uml.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/uml.cpp b/src/devices/cpu/uml.cpp index 5c38c40b6dc..df52f5f1235 100644 --- a/src/devices/cpu/uml.cpp +++ b/src/devices/cpu/uml.cpp @@ -307,7 +307,7 @@ void uml::instruction::configure(opcode_t op, u8 size, condition_t condition) // parameter //------------------------------------------------- -void uml::instruction::configure(opcode_t op, u8 size, const parameter &p0, condition_t condition) +void uml::instruction::configure(opcode_t op, u8 size, parameter p0, condition_t condition) { // fill in the instruction m_opcode = opcode_t(u8(op)); @@ -327,7 +327,7 @@ void uml::instruction::configure(opcode_t op, u8 size, const parameter &p0, cond // parameters //------------------------------------------------- -void uml::instruction::configure(opcode_t op, u8 size, const parameter &p0, const parameter &p1, condition_t condition) +void uml::instruction::configure(opcode_t op, u8 size, parameter p0, parameter p1, condition_t condition) { // fill in the instruction m_opcode = opcode_t(u8(op)); @@ -348,7 +348,7 @@ void uml::instruction::configure(opcode_t op, u8 size, const parameter &p0, cons // parameters //------------------------------------------------- -void uml::instruction::configure(opcode_t op, u8 size, const parameter &p0, const parameter &p1, const parameter &p2, condition_t condition) +void uml::instruction::configure(opcode_t op, u8 size, parameter p0, parameter p1, parameter p2, condition_t condition) { // fill in the instruction m_opcode = opcode_t(u8(op)); @@ -370,7 +370,7 @@ void uml::instruction::configure(opcode_t op, u8 size, const parameter &p0, cons // parameters //------------------------------------------------- -void uml::instruction::configure(opcode_t op, u8 size, const parameter &p0, const parameter &p1, const parameter &p2, const parameter &p3, condition_t condition) +void uml::instruction::configure(opcode_t op, u8 size, parameter p0, parameter p1, parameter p2, parameter p3, condition_t condition) { // fill in the instruction m_opcode = opcode_t(u8(op)); |