From 3536bbdd7167b3982deca3e91960658ac620fdf1 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Fri, 31 Jan 2020 14:53:46 +1100 Subject: there are reasons for things being the way they were (nw) --- src/devices/cpu/uml.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/devices/cpu/uml.cpp') 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)); -- cgit v1.2.3-70-g09d2