├── .gitignore ├── AsmSymScanner.py ├── BuildResults └── ThisFolderMustExist ├── ConfigInfo.s ├── EasyBuild ├── EasyBuild.sh ├── Emulator.x ├── Internal ├── EmulatorPublic.a ├── InfoRecords.a ├── NKOpaque.a └── NKPublic.a ├── Linker ├── LinkPowerROM └── LinkPowerROM.c ├── MakeFile ├── NanoKernel ├── InnerMakeFile ├── MakeFile ├── NKAdditions.s ├── NKAddressSpaces.s ├── NKBuiltinInit.s ├── NKCache.s ├── NKConsoleLog.s ├── NKEquates.s ├── NKIndex.s ├── NKInit.s ├── NKInterrupts.s ├── NKMPCalls.s ├── NKMacros.s ├── NKPaging.s ├── NKPoolAllocator.s ├── NKPowerCalls.s ├── NKPrimaryIntHandlers.s ├── NKProcFlagsTbl.s ├── NKProcInfoTbl.s ├── NKRTASCalls.s ├── NKReplacementInit.s ├── NKScheduler.s ├── NKScreenConsole.s ├── NKSleep.s ├── NKSync.s ├── NKTasks.s ├── NKThud.s ├── NKTimers.s ├── NKTranslation.s ├── NKVMCalls.s └── NanoKernel.s ├── PPCExceptionTable.s ├── README.md ├── RomMondo.bin └── SetFileTypes.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/.gitignore -------------------------------------------------------------------------------- /AsmSymScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/AsmSymScanner.py -------------------------------------------------------------------------------- /BuildResults/ThisFolderMustExist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConfigInfo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/ConfigInfo.s -------------------------------------------------------------------------------- /EasyBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/EasyBuild -------------------------------------------------------------------------------- /EasyBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/EasyBuild.sh -------------------------------------------------------------------------------- /Emulator.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/Emulator.x -------------------------------------------------------------------------------- /Internal/EmulatorPublic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/Internal/EmulatorPublic.a -------------------------------------------------------------------------------- /Internal/InfoRecords.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/Internal/InfoRecords.a -------------------------------------------------------------------------------- /Internal/NKOpaque.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/Internal/NKOpaque.a -------------------------------------------------------------------------------- /Internal/NKPublic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/Internal/NKPublic.a -------------------------------------------------------------------------------- /Linker/LinkPowerROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/Linker/LinkPowerROM -------------------------------------------------------------------------------- /Linker/LinkPowerROM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/Linker/LinkPowerROM.c -------------------------------------------------------------------------------- /MakeFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/MakeFile -------------------------------------------------------------------------------- /NanoKernel/InnerMakeFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/InnerMakeFile -------------------------------------------------------------------------------- /NanoKernel/MakeFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/MakeFile -------------------------------------------------------------------------------- /NanoKernel/NKAdditions.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKAdditions.s -------------------------------------------------------------------------------- /NanoKernel/NKAddressSpaces.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKAddressSpaces.s -------------------------------------------------------------------------------- /NanoKernel/NKBuiltinInit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKBuiltinInit.s -------------------------------------------------------------------------------- /NanoKernel/NKCache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKCache.s -------------------------------------------------------------------------------- /NanoKernel/NKConsoleLog.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKConsoleLog.s -------------------------------------------------------------------------------- /NanoKernel/NKEquates.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKEquates.s -------------------------------------------------------------------------------- /NanoKernel/NKIndex.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKIndex.s -------------------------------------------------------------------------------- /NanoKernel/NKInit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKInit.s -------------------------------------------------------------------------------- /NanoKernel/NKInterrupts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKInterrupts.s -------------------------------------------------------------------------------- /NanoKernel/NKMPCalls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKMPCalls.s -------------------------------------------------------------------------------- /NanoKernel/NKMacros.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKMacros.s -------------------------------------------------------------------------------- /NanoKernel/NKPaging.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKPaging.s -------------------------------------------------------------------------------- /NanoKernel/NKPoolAllocator.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKPoolAllocator.s -------------------------------------------------------------------------------- /NanoKernel/NKPowerCalls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKPowerCalls.s -------------------------------------------------------------------------------- /NanoKernel/NKPrimaryIntHandlers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKPrimaryIntHandlers.s -------------------------------------------------------------------------------- /NanoKernel/NKProcFlagsTbl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKProcFlagsTbl.s -------------------------------------------------------------------------------- /NanoKernel/NKProcInfoTbl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKProcInfoTbl.s -------------------------------------------------------------------------------- /NanoKernel/NKRTASCalls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKRTASCalls.s -------------------------------------------------------------------------------- /NanoKernel/NKReplacementInit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKReplacementInit.s -------------------------------------------------------------------------------- /NanoKernel/NKScheduler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKScheduler.s -------------------------------------------------------------------------------- /NanoKernel/NKScreenConsole.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKScreenConsole.s -------------------------------------------------------------------------------- /NanoKernel/NKSleep.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKSleep.s -------------------------------------------------------------------------------- /NanoKernel/NKSync.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKSync.s -------------------------------------------------------------------------------- /NanoKernel/NKTasks.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKTasks.s -------------------------------------------------------------------------------- /NanoKernel/NKThud.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKThud.s -------------------------------------------------------------------------------- /NanoKernel/NKTimers.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKTimers.s -------------------------------------------------------------------------------- /NanoKernel/NKTranslation.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKTranslation.s -------------------------------------------------------------------------------- /NanoKernel/NKVMCalls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NKVMCalls.s -------------------------------------------------------------------------------- /NanoKernel/NanoKernel.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/NanoKernel/NanoKernel.s -------------------------------------------------------------------------------- /PPCExceptionTable.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/PPCExceptionTable.s -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Use https://github.com/elliotnunn/tbxi instead! 2 | -------------------------------------------------------------------------------- /RomMondo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/RomMondo.bin -------------------------------------------------------------------------------- /SetFileTypes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotnunn/powermac-rom/HEAD/SetFileTypes.sh --------------------------------------------------------------------------------