| 1084 | } |
| 1085 | |
| 1086 | U16 CPU::peek16(U32 index) { |
| 1087 | return memory->readw(this->seg[SS].address+ ((THIS_ESP+index*2) & this->stackMask)); |
| 1088 | } |
| 1089 | |
| 1090 | void CPU::push16(U16 value) { |
| 1091 | U32 new_esp=(THIS_ESP & this->stackNotMask) | ((THIS_ESP - 2) & this->stackMask); |
no test coverage detected