11
| 1287 | |
| 1288 | //11 |
| 1289 | bool cHardwareTransSMT::Inst_Val_Mult(cAvidaContext&) |
| 1290 | { |
| 1291 | const int dst = FindModifiedStack(STACK_BX); |
| 1292 | const int op1 = FindModifiedStack(STACK_BX); |
| 1293 | const int op2 = FindModifiedNextStack(op1); |
| 1294 | Stack(dst).Push(Stack(op1).Top() * Stack(op2).Top()); |
| 1295 | return true; |
| 1296 | } |
| 1297 | |
| 1298 | //12 |
| 1299 | bool cHardwareTransSMT::Inst_Val_Div(cAvidaContext&) |