├── .gitignore ├── CMakeLists.txt ├── README.md ├── lib ├── OpenGLLibraryStub ├── OpenGLMemoryStub └── OpenGLUtilityStub └── src ├── console ├── Console.cpp ├── Console.hpp ├── ConsoleWindow.cpp ├── ConsoleWindow.hpp ├── InitConsole.cpp └── MacUtils.h ├── detection ├── 68kextras.cpp ├── battery.cpp ├── cpu.cpp ├── disk.cpp ├── functions.cpp ├── functions.hpp ├── gestalt.cpp ├── gpu.cpp ├── memory.cpp ├── misc.cpp ├── os.cpp ├── rom.cpp ├── user.cpp └── xpostcode │ ├── CPUDevice.cpp │ └── CPUDevice.h ├── logo.hpp └── os9fetch.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | *build*/ 3 | *.bin 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/README.md -------------------------------------------------------------------------------- /lib/OpenGLLibraryStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/lib/OpenGLLibraryStub -------------------------------------------------------------------------------- /lib/OpenGLMemoryStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/lib/OpenGLMemoryStub -------------------------------------------------------------------------------- /lib/OpenGLUtilityStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/lib/OpenGLUtilityStub -------------------------------------------------------------------------------- /src/console/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/console/Console.cpp -------------------------------------------------------------------------------- /src/console/Console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/console/Console.hpp -------------------------------------------------------------------------------- /src/console/ConsoleWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/console/ConsoleWindow.cpp -------------------------------------------------------------------------------- /src/console/ConsoleWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/console/ConsoleWindow.hpp -------------------------------------------------------------------------------- /src/console/InitConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/console/InitConsole.cpp -------------------------------------------------------------------------------- /src/console/MacUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/console/MacUtils.h -------------------------------------------------------------------------------- /src/detection/68kextras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/68kextras.cpp -------------------------------------------------------------------------------- /src/detection/battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/battery.cpp -------------------------------------------------------------------------------- /src/detection/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/cpu.cpp -------------------------------------------------------------------------------- /src/detection/disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/disk.cpp -------------------------------------------------------------------------------- /src/detection/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/functions.cpp -------------------------------------------------------------------------------- /src/detection/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/functions.hpp -------------------------------------------------------------------------------- /src/detection/gestalt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/gestalt.cpp -------------------------------------------------------------------------------- /src/detection/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/gpu.cpp -------------------------------------------------------------------------------- /src/detection/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/memory.cpp -------------------------------------------------------------------------------- /src/detection/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/misc.cpp -------------------------------------------------------------------------------- /src/detection/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/os.cpp -------------------------------------------------------------------------------- /src/detection/rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/rom.cpp -------------------------------------------------------------------------------- /src/detection/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/user.cpp -------------------------------------------------------------------------------- /src/detection/xpostcode/CPUDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/xpostcode/CPUDevice.cpp -------------------------------------------------------------------------------- /src/detection/xpostcode/CPUDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/detection/xpostcode/CPUDevice.h -------------------------------------------------------------------------------- /src/logo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/logo.hpp -------------------------------------------------------------------------------- /src/os9fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerMacTools/PowerFetch/HEAD/src/os9fetch.cpp --------------------------------------------------------------------------------