| 856 | |
| 857 | |
| 858 | void Unpack::ExecuteCode(VM_PreparedProgram *Prg) |
| 859 | { |
| 860 | if (Prg->GlobalData.Size()>0) |
| 861 | { |
| 862 | Prg->InitR[6]=(uint)WrittenFileSize; |
| 863 | VM.SetLowEndianValue((uint *)&Prg->GlobalData[0x24],(uint)WrittenFileSize); |
| 864 | VM.SetLowEndianValue((uint *)&Prg->GlobalData[0x28],(uint)(WrittenFileSize>>32)); |
| 865 | VM.Execute(Prg); |
| 866 | } |
| 867 | } |
| 868 | |
| 869 | |
| 870 | void Unpack::UnpWriteArea(unsigned int StartPtr,unsigned int EndPtr) |
nothing calls this directly
no test coverage detected