mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 02:07:02 +03:00
We can now create a fresh Ghidra project, import the JSRF executable into it, import symbols into it, delink object files from it, and then decompile with objdiff. Just needs some documentation.
12 lines
300 B
C++
12 lines
300 B
C++
/* JSRF Decompilation: Std.hpp
|
|
C(++) standard library definitions. Implemented in the repository instead of
|
|
linking to an outside stdlib to ensure consistency (this may not actually be
|
|
possible to accomplish, but we'll go for it for now).
|
|
*/
|
|
|
|
#ifndef STD_HPP
|
|
#define STD_HPP
|
|
|
|
#define NULL 0
|
|
|
|
#endif
|