diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-08 07:21:07 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-03-08 07:21:07 +0100 |
| commit | 484130413d1fd5b1bdc4ae452cb469a9afe13fae (patch) | |
| tree | ff38cabffc5f2edcd4c7438dbed3f0d955d3051a | |
| parent | cdb770f646ad620a76928981b8a5a618207fc82c (diff) | |
[CHORE] Document __ne_arch, update Config.h.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -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> + + |
