diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | doc/requirements/NE_ARCH.md | 8 | ||||
| -rw-r--r-- | include/System/Config.h | 4 |
3 files changed, 14 insertions, 0 deletions
@@ -4,6 +4,8 @@ __pycache__ .claude +*~ + xcuserdata/ *.efi diff --git a/doc/requirements/NE_ARCH.md b/doc/requirements/NE_ARCH.md new file mode 100644 index 0000000..ae2c7fd --- /dev/null +++ b/doc/requirements/NE_ARCH.md @@ -0,0 +1,8 @@ +# __ne_arch: Architecture Identification Macro. + +## Abstract: + +`__ne_arch` takes care of reporting NeSystem's running ISA+Computer_Architecture. In other words a platform. + +You use this for platform specific code. Recommended for C/C++ programs, JVM and VM based languages should not rely on this macro. + diff --git a/include/System/Config.h b/include/System/Config.h index 3c5f723..8be94f4 100644 --- a/include/System/Config.h +++ b/include/System/Config.h @@ -12,3 +12,7 @@ #define _NEKERNEL 202603 #include <CoreFoundation.fwrk/headers/Foundation.h> +#include <DiskImage.fwrk/headers/DiskImage.h> +#include <LaunchHelpers.fwrk/headers/Foundation.h> + + |
