Previous 199869 Revisions Next

r41435 Wednesday 28th October, 2015 at 18:24:25 UTC by Miodrag Milanović
Fix typo (nw)
[src/devices/cpu/arcompact]arcompact_execute.c

trunk/src/devices/cpu/arcompact/arcompact_execute.c
r249946r249947
20422042   {
20432043      // if F isn't set then the destination can't be ILINK1 or ILINK2
20442044
2045      if ((creg == REG_ILINK1) || (creg == REG_ILINK1))
2045      if ((creg == REG_ILINK1) || (creg == REG_ILINK2))
20462046      {
20472047         arcompact_fatal ("fatal arcompact_handle04_20_p11_m0 J %08x (F not set but ILINK1 or ILINK2 used as dst)", op);
20482048      }
r249946r249947
20572057   {
20582058      // if F is set then the destination MUST be ILINK1 or ILINK2
20592059
2060      if ((creg == REG_ILINK1) || (creg == REG_ILINK1))
2060      if ((creg == REG_ILINK1) || (creg == REG_ILINK2))
20612061      {
20622062         arcompact_log("unimplemented arcompact_handle04_20_p11_m0 J %08x (F set)", op);
20632063      }
r249946r249947
21632163   {
21642164      // if F isn't set then the destination can't be ILINK1 or ILINK2
21652165
2166      if ((creg == REG_ILINK1) || (creg == REG_ILINK1))
2166      if ((creg == REG_ILINK1) || (creg == REG_ILINK2))
21672167      {
21682168         arcompact_log("unimplemented Jcc.D (p11_m0 type, illegal) %08x", op);
21692169      }
r249946r249947
21772177   {
21782178      // if F is set then the destination MUST be ILINK1 or ILINK2
21792179
2180      if ((creg == REG_ILINK1) || (creg == REG_ILINK1))
2180      if ((creg == REG_ILINK1) || (creg == REG_ILINK2))
21812181      {
21822182         arcompact_log("unimplemented Jcc.D.F (p11_m0 type, unimplemented) %08x", op);
21832183      }


Previous 199869 Revisions Next


© 1997-2024 The MAME Team