| 6 | IMPLEMENT(Wait); |
| 7 | |
| 8 | bool Wait::execute(aithread &thread) const |
| 9 | { |
| 10 | // Retrieve parameters |
| 11 | WORD wFrames; |
| 12 | thread.readTuple( std::tie(wFrames) ); |
| 13 | |
| 14 | thread.saveDebug(Text::Green, this->getOpcode(), "%u", wFrames); |
| 15 | thread.noretry(); |
| 16 | return false; |
| 17 | } |