Previous 199869 Revisions Next

r34602 Sunday 25th January, 2015 at 21:42:02 UTC by David Haywood
fix compile? (nw)
[src/emu/cpu/sh2]sh2drc.c

trunk/src/emu/cpu/sh2/sh2drc.c
r243113r243114
9191   {
9292      if (m_regmap[regnum].is_int_register())
9393      {
94         UML_MOV(block, parameter::make_ireg(m_regmap[regnum].ireg()), mem(&m_sh2_state->r[regnum]));
94         UML_MOV(block, uml::parameter::make_ireg(m_regmap[regnum].ireg()), mem(&m_sh2_state->r[regnum]));
9595      }
9696   }
9797}
r243113r243114
110110   {
111111      if (m_regmap[regnum].is_int_register())
112112      {
113         UML_MOV(block, mem(&m_sh2_state->r[regnum]), parameter::make_ireg(m_regmap[regnum].ireg()));
113         UML_MOV(block, mem(&m_sh2_state->r[regnum]), uml::parameter::make_ireg(m_regmap[regnum].ireg()));
114114      }
115115   }
116116}
r243113r243114
12201220    subtract cycles from the icount and generate
12211221    an exception if out
12221222-------------------------------------------------*/
1223void sh2_device::generate_update_cycles(drcuml_block *block, compiler_state *compiler, parameter param, int allow_exception)
1223void sh2_device::generate_update_cycles(drcuml_block *block, compiler_state *compiler, uml::parameter param, int allow_exception)
12241224{
12251225   /* check full interrupts if pending */
12261226   if (compiler->checkints)


Previous 199869 Revisions Next


© 1997-2024 The MAME Team