9
| 1267 | |
| 1268 | //9 |
| 1269 | bool cHardwareTransSMT::Inst_Val_Add(cAvidaContext&) |
| 1270 | { |
| 1271 | const int dst = FindModifiedStack(STACK_BX); |
| 1272 | const int op1 = FindModifiedStack(STACK_BX); |
| 1273 | const int op2 = FindModifiedNextStack(op1); |
| 1274 | Stack(dst).Push(Stack(op1).Top() + Stack(op2).Top()); |
| 1275 | return true; |
| 1276 | } |
| 1277 | |
| 1278 | //10 |
| 1279 | bool cHardwareTransSMT::Inst_Val_Sub(cAvidaContext&) |