()
| 58 | } |
| 59 | |
| 60 | public short findPs3ProgramType() throws Exception { |
| 61 | if(getElfHeader() == null) { |
| 62 | script.printerr("Couldn't find Elf64_Ehdr\n"); |
| 63 | return -1; |
| 64 | } |
| 65 | |
| 66 | return script.getDataAt(elfHeader.getStart()).getComponent(8).getShort(0);// e_type |
| 67 | } |
| 68 | |
| 69 | public boolean loadingExec() throws Exception { |
| 70 | return programType == ET_EXEC; |
no test coverage detected