| 921 | U32 getBlockEipCount(struct Block* block); |
| 922 | |
| 923 | struct Op* getLastOp(struct Block* block) { |
| 924 | struct Op* result = block->ops; |
| 925 | while (result->next) { |
| 926 | result = result->next; |
| 927 | } |
| 928 | return result; |
| 929 | } |
| 930 | |
| 931 | void OPCALL jump(struct CPU* cpu, struct Op* op); |
| 932 | void OPCALL firstOp(struct CPU* cpu, struct Op* op); |