mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-04-07 04:50:23 +03:00
Compare commits
No commits in common. "e7e9d3b1be04d7642e65d18cd6d44d51807863f7" and "57fc53ebfbbbdc62681b091f03dd1dbfafc93b4a" have entirely different histories.
e7e9d3b1be
...
57fc53ebfb
3 changed files with 6 additions and 9 deletions
|
|
@ -16,10 +16,10 @@
|
||||||
"source_path": "src/JSRF/Jet2.cpp"
|
"source_path": "src/JSRF/Jet2.cpp"
|
||||||
},
|
},
|
||||||
"symbol_mappings": {
|
"symbol_mappings": {
|
||||||
"?main_funcinfo@@3UEHFuncInfo@@A": "$T1130",
|
"?main_funcinfo@@3UFuncInfo@@A": "$T1112",
|
||||||
"?main_handler@@YAXPAUExceptionRecord@@PAKPAXPAUEHDispatcherContext@@@Z": "$L1134",
|
"?main_handler@@YAXPAUEHExceptionRecord@@PAKPAXPAU_xDISPATCHER_CONTEXT@@@Z": "$L1116",
|
||||||
"?main_handler_unwind1@@YAXXZ": "$L1126",
|
"?main_handler_unwind1@@YAXXZ": "$L1108",
|
||||||
"?main_unwindmap@@3PAUEHUnwindMapEntry@@A": "$T1136",
|
"?main_unwindmap@@3PAUUnwindMapEntry@@A": "$T1118",
|
||||||
"[.rdata-0]": "[.xdata$x-0]"
|
"[.rdata-0]": "[.xdata$x-0]"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
3
ghidra/.gitignore
vendored
3
ghidra/.gitignore
vendored
|
|
@ -1,4 +1 @@
|
||||||
jsrf.h
|
jsrf.h
|
||||||
|
|
||||||
# In case you'd like to put your Ghidra project here
|
|
||||||
project
|
|
||||||
|
|
|
||||||
|
|
@ -67,8 +67,8 @@ delink() {
|
||||||
# $5: Output path (inside decompile/target/)
|
# $5: Output path (inside decompile/target/)
|
||||||
# Call the right script depending on whether we're on Windows
|
# Call the right script depending on whether we're on Windows
|
||||||
# (this seems like the most reliable method I can find for POSIX sh)
|
# (this seems like the most reliable method I can find for POSIX sh)
|
||||||
if [ -n "${WINDIR-}" ]; then suffix=.bat
|
if [ -n "$WINDIR" ]; then suffix=.bat
|
||||||
else suffix=
|
else suffix=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# POSIX compatibility layers for Windows (like in git bash) will
|
# POSIX compatibility layers for Windows (like in git bash) will
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue