| 75 | } |
| 76 | |
| 77 | void CPU::setSeg(U32 index, U32 address, U32 value) { |
| 78 | this->seg[index].address = address; |
| 79 | this->seg[index].value = value; |
| 80 | if (this->seg[index].address) { |
| 81 | this->thread->process->hasSetSeg[index] = true; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | void CPU::setIsBig(U32 value) { |
| 86 | this->big = value; |
no outgoing calls