├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── display.c ├── file.c ├── hardware.c ├── input.c ├── install ├── add.reg └── remove.reg ├── keytrans.c ├── main.c ├── makefile ├── ndk ├── arch │ ├── ketypes.h │ └── mmtypes.h ├── asm.h ├── cctypes.h ├── cmfuncs.h ├── cmtypes.h ├── dbgkfuncs.h ├── dbgktypes.h ├── exfuncs.h ├── extypes.h ├── halfuncs.h ├── haltypes.h ├── i386 │ ├── ketypes.h │ └── mmtypes.h ├── ifssupp.h ├── inbvfuncs.h ├── inbvtypes.h ├── iofuncs.h ├── iotypes.h ├── kdfuncs.h ├── kdtypes.h ├── kefuncs.h ├── ketypes.h ├── ldrfuncs.h ├── ldrtypes.h ├── lpcfuncs.h ├── lpctypes.h ├── mmfuncs.h ├── mmtypes.h ├── ntndk.h ├── ntnls.h ├── obfuncs.h ├── obtypes.h ├── pofuncs.h ├── potypes.h ├── powerpc │ ├── ketypes.h │ └── mmtypes.h ├── psfuncs.h ├── pstypes.h ├── readme.txt ├── rtlfuncs.h ├── rtltypes.h ├── sefuncs.h ├── setypes.h ├── umfuncs.h └── umtypes.h ├── ntfile.c ├── ntfile.h ├── ntreg.c ├── ntreg.h ├── precomp.h ├── process.c ├── shell.c ├── sources └── sysinfo.c /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/README.md -------------------------------------------------------------------------------- /display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/display.c -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/file.c -------------------------------------------------------------------------------- /hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/hardware.c -------------------------------------------------------------------------------- /input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/input.c -------------------------------------------------------------------------------- /install/add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/install/add.reg -------------------------------------------------------------------------------- /install/remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/install/remove.reg -------------------------------------------------------------------------------- /keytrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/keytrans.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/main.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/makefile -------------------------------------------------------------------------------- /ndk/arch/ketypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/arch/ketypes.h -------------------------------------------------------------------------------- /ndk/arch/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/arch/mmtypes.h -------------------------------------------------------------------------------- /ndk/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/asm.h -------------------------------------------------------------------------------- /ndk/cctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/cctypes.h -------------------------------------------------------------------------------- /ndk/cmfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/cmfuncs.h -------------------------------------------------------------------------------- /ndk/cmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/cmtypes.h -------------------------------------------------------------------------------- /ndk/dbgkfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/dbgkfuncs.h -------------------------------------------------------------------------------- /ndk/dbgktypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/dbgktypes.h -------------------------------------------------------------------------------- /ndk/exfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/exfuncs.h -------------------------------------------------------------------------------- /ndk/extypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/extypes.h -------------------------------------------------------------------------------- /ndk/halfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/halfuncs.h -------------------------------------------------------------------------------- /ndk/haltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/haltypes.h -------------------------------------------------------------------------------- /ndk/i386/ketypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/i386/ketypes.h -------------------------------------------------------------------------------- /ndk/i386/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/i386/mmtypes.h -------------------------------------------------------------------------------- /ndk/ifssupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/ifssupp.h -------------------------------------------------------------------------------- /ndk/inbvfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/inbvfuncs.h -------------------------------------------------------------------------------- /ndk/inbvtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/inbvtypes.h -------------------------------------------------------------------------------- /ndk/iofuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/iofuncs.h -------------------------------------------------------------------------------- /ndk/iotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/iotypes.h -------------------------------------------------------------------------------- /ndk/kdfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/kdfuncs.h -------------------------------------------------------------------------------- /ndk/kdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/kdtypes.h -------------------------------------------------------------------------------- /ndk/kefuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/kefuncs.h -------------------------------------------------------------------------------- /ndk/ketypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/ketypes.h -------------------------------------------------------------------------------- /ndk/ldrfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/ldrfuncs.h -------------------------------------------------------------------------------- /ndk/ldrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/ldrtypes.h -------------------------------------------------------------------------------- /ndk/lpcfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/lpcfuncs.h -------------------------------------------------------------------------------- /ndk/lpctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/lpctypes.h -------------------------------------------------------------------------------- /ndk/mmfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/mmfuncs.h -------------------------------------------------------------------------------- /ndk/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/mmtypes.h -------------------------------------------------------------------------------- /ndk/ntndk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/ntndk.h -------------------------------------------------------------------------------- /ndk/ntnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/ntnls.h -------------------------------------------------------------------------------- /ndk/obfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/obfuncs.h -------------------------------------------------------------------------------- /ndk/obtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/obtypes.h -------------------------------------------------------------------------------- /ndk/pofuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/pofuncs.h -------------------------------------------------------------------------------- /ndk/potypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/potypes.h -------------------------------------------------------------------------------- /ndk/powerpc/ketypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/powerpc/ketypes.h -------------------------------------------------------------------------------- /ndk/powerpc/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/powerpc/mmtypes.h -------------------------------------------------------------------------------- /ndk/psfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/psfuncs.h -------------------------------------------------------------------------------- /ndk/pstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/pstypes.h -------------------------------------------------------------------------------- /ndk/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/readme.txt -------------------------------------------------------------------------------- /ndk/rtlfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/rtlfuncs.h -------------------------------------------------------------------------------- /ndk/rtltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/rtltypes.h -------------------------------------------------------------------------------- /ndk/sefuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/sefuncs.h -------------------------------------------------------------------------------- /ndk/setypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/setypes.h -------------------------------------------------------------------------------- /ndk/umfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/umfuncs.h -------------------------------------------------------------------------------- /ndk/umtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ndk/umtypes.h -------------------------------------------------------------------------------- /ntfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ntfile.c -------------------------------------------------------------------------------- /ntfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ntfile.h -------------------------------------------------------------------------------- /ntreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ntreg.c -------------------------------------------------------------------------------- /ntreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/ntreg.h -------------------------------------------------------------------------------- /precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/precomp.h -------------------------------------------------------------------------------- /process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/process.c -------------------------------------------------------------------------------- /shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/shell.c -------------------------------------------------------------------------------- /sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/sources -------------------------------------------------------------------------------- /sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amdf/NativeShell/HEAD/sysinfo.c --------------------------------------------------------------------------------