├── .github └── ISSUE_TEMPLATE │ ├── bug-report---unable-to-run-in-virtual-machine.md │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── Documentation.md ├── LICENSE.md ├── OVMFbin ├── OVMF_CODE-pure-efi.fd └── OVMF_VARS-pure-efi.fd ├── README.md ├── bootloader ├── Makefile └── main.c ├── clean.sh ├── compile.sh ├── kernel ├── ISO.sh ├── Makefile ├── bin │ ├── CustomOS.img │ ├── LinuxPicture.bmp │ ├── Picture.bmp │ ├── iso │ │ ├── ringOS.img │ │ └── ringOS.iso │ ├── kernel.elf │ ├── ringOS.img │ └── zap-light16.psf ├── bitIndex ├── debug.bat ├── kernel.lld ├── run.bat ├── run2.bat ├── src │ ├── BMPImageFile.h │ ├── BasicRenderer.cpp │ ├── BasicRenderer.hpp │ ├── ColorCodes.h │ ├── Framebuffer.h │ ├── IO.cpp │ ├── IO.hpp │ ├── Modules.txt │ ├── Numbers.h │ ├── Reboot.cpp │ ├── Reboot.hpp │ ├── Serial.cpp │ ├── Serial.hpp │ ├── Window │ │ ├── GUIInclude.hpp │ │ ├── Window.cpp │ │ └── Window.hpp │ ├── acpi.cpp │ ├── acpi.hpp │ ├── ahci │ │ ├── ahci.cpp │ │ └── ahci.hpp │ ├── cstr.cpp │ ├── cstr.hpp │ ├── efiMemory.cpp │ ├── efiMemory.hpp │ ├── elf │ │ └── ELF.hpp │ ├── font.hpp │ ├── gdt │ │ ├── gdt.asm │ │ ├── gdt.cpp │ │ └── gdt.h │ ├── interrupts │ │ ├── IDT.cpp │ │ ├── IDT.hpp │ │ ├── interrupts.cpp │ │ └── interrupts.hpp │ ├── kernel.cpp │ ├── kernelUtil.cpp │ ├── kernelUtil.h │ ├── library │ │ ├── libc │ │ │ ├── printf.cpp │ │ │ ├── printf.hpp │ │ │ ├── string.cpp │ │ │ └── string.hpp │ │ ├── stdio.cpp │ │ └── stdio.hpp │ ├── math.h │ ├── memory.cpp │ ├── memory.hpp │ ├── memory │ │ ├── heap.cpp │ │ └── heap.hpp │ ├── paging │ │ ├── PageFrameAllocator.cpp │ │ ├── PageFrameAllocator.hpp │ │ ├── PageMapIndexer.cpp │ │ ├── PageMapIndexer.hpp │ │ ├── PageTableManager.cpp │ │ ├── PageTableManager.hpp │ │ ├── paging.cpp │ │ └── paging.hpp │ ├── panic.cpp │ ├── panic.hpp │ ├── pci.cpp │ ├── pci.hpp │ ├── pciDescriptors.cpp │ ├── scheduling │ │ └── pit │ │ │ ├── pit.cpp │ │ │ └── pit.hpp │ ├── settings.h │ ├── shutdown.cpp │ ├── shutdown.hpp │ ├── simpleFonts.h │ ├── smbios.cpp │ ├── smbios.h │ ├── test.c │ ├── test.h │ ├── tga │ │ ├── tga.cpp │ │ └── tga.h │ └── userinput │ │ ├── keyboard.cpp │ │ ├── keyboard.hpp │ │ ├── mouse.cpp │ │ └── mouse.hpp └── startup.nsh ├── lua.sh ├── ringOS Pixel art.xlsx ├── ringOS-beta-arch.sh ├── ringOS-beta-debian.sh ├── ringOS-beta-redhat.sh ├── ringOS-stable-Builder-arch.sh ├── ringOS-stable-Builder-debian.sh └── ringOS-stable-Builder-redhat.sh /.github/ISSUE_TEMPLATE/bug-report---unable-to-run-in-virtual-machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/.github/ISSUE_TEMPLATE/bug-report---unable-to-run-in-virtual-machine.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/Documentation.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OVMFbin/OVMF_CODE-pure-efi.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/OVMFbin/OVMF_CODE-pure-efi.fd -------------------------------------------------------------------------------- /OVMFbin/OVMF_VARS-pure-efi.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/OVMFbin/OVMF_VARS-pure-efi.fd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/README.md -------------------------------------------------------------------------------- /bootloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/bootloader/Makefile -------------------------------------------------------------------------------- /bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/bootloader/main.c -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/clean.sh -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/compile.sh -------------------------------------------------------------------------------- /kernel/ISO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/ISO.sh -------------------------------------------------------------------------------- /kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/Makefile -------------------------------------------------------------------------------- /kernel/bin/CustomOS.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/bin/CustomOS.img -------------------------------------------------------------------------------- /kernel/bin/LinuxPicture.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/bin/LinuxPicture.bmp -------------------------------------------------------------------------------- /kernel/bin/Picture.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/bin/Picture.bmp -------------------------------------------------------------------------------- /kernel/bin/iso/ringOS.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/bin/iso/ringOS.img -------------------------------------------------------------------------------- /kernel/bin/iso/ringOS.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/bin/iso/ringOS.iso -------------------------------------------------------------------------------- /kernel/bin/kernel.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/bin/kernel.elf -------------------------------------------------------------------------------- /kernel/bin/ringOS.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/bin/ringOS.img -------------------------------------------------------------------------------- /kernel/bin/zap-light16.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/bin/zap-light16.psf -------------------------------------------------------------------------------- /kernel/bitIndex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernel/debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/debug.bat -------------------------------------------------------------------------------- /kernel/kernel.lld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/kernel.lld -------------------------------------------------------------------------------- /kernel/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/run.bat -------------------------------------------------------------------------------- /kernel/run2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/run2.bat -------------------------------------------------------------------------------- /kernel/src/BMPImageFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/BMPImageFile.h -------------------------------------------------------------------------------- /kernel/src/BasicRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/BasicRenderer.cpp -------------------------------------------------------------------------------- /kernel/src/BasicRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/BasicRenderer.hpp -------------------------------------------------------------------------------- /kernel/src/ColorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/ColorCodes.h -------------------------------------------------------------------------------- /kernel/src/Framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Framebuffer.h -------------------------------------------------------------------------------- /kernel/src/IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/IO.cpp -------------------------------------------------------------------------------- /kernel/src/IO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/IO.hpp -------------------------------------------------------------------------------- /kernel/src/Modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Modules.txt -------------------------------------------------------------------------------- /kernel/src/Numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Numbers.h -------------------------------------------------------------------------------- /kernel/src/Reboot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Reboot.cpp -------------------------------------------------------------------------------- /kernel/src/Reboot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Reboot.hpp -------------------------------------------------------------------------------- /kernel/src/Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Serial.cpp -------------------------------------------------------------------------------- /kernel/src/Serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Serial.hpp -------------------------------------------------------------------------------- /kernel/src/Window/GUIInclude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Window/GUIInclude.hpp -------------------------------------------------------------------------------- /kernel/src/Window/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Window/Window.cpp -------------------------------------------------------------------------------- /kernel/src/Window/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/Window/Window.hpp -------------------------------------------------------------------------------- /kernel/src/acpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/acpi.cpp -------------------------------------------------------------------------------- /kernel/src/acpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/acpi.hpp -------------------------------------------------------------------------------- /kernel/src/ahci/ahci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/ahci/ahci.cpp -------------------------------------------------------------------------------- /kernel/src/ahci/ahci.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/ahci/ahci.hpp -------------------------------------------------------------------------------- /kernel/src/cstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/cstr.cpp -------------------------------------------------------------------------------- /kernel/src/cstr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/cstr.hpp -------------------------------------------------------------------------------- /kernel/src/efiMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/efiMemory.cpp -------------------------------------------------------------------------------- /kernel/src/efiMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/efiMemory.hpp -------------------------------------------------------------------------------- /kernel/src/elf/ELF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/elf/ELF.hpp -------------------------------------------------------------------------------- /kernel/src/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/font.hpp -------------------------------------------------------------------------------- /kernel/src/gdt/gdt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/gdt/gdt.asm -------------------------------------------------------------------------------- /kernel/src/gdt/gdt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/gdt/gdt.cpp -------------------------------------------------------------------------------- /kernel/src/gdt/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/gdt/gdt.h -------------------------------------------------------------------------------- /kernel/src/interrupts/IDT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/interrupts/IDT.cpp -------------------------------------------------------------------------------- /kernel/src/interrupts/IDT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/interrupts/IDT.hpp -------------------------------------------------------------------------------- /kernel/src/interrupts/interrupts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/interrupts/interrupts.cpp -------------------------------------------------------------------------------- /kernel/src/interrupts/interrupts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/interrupts/interrupts.hpp -------------------------------------------------------------------------------- /kernel/src/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/kernel.cpp -------------------------------------------------------------------------------- /kernel/src/kernelUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/kernelUtil.cpp -------------------------------------------------------------------------------- /kernel/src/kernelUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/kernelUtil.h -------------------------------------------------------------------------------- /kernel/src/library/libc/printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/library/libc/printf.cpp -------------------------------------------------------------------------------- /kernel/src/library/libc/printf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/library/libc/printf.hpp -------------------------------------------------------------------------------- /kernel/src/library/libc/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/library/libc/string.cpp -------------------------------------------------------------------------------- /kernel/src/library/libc/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/library/libc/string.hpp -------------------------------------------------------------------------------- /kernel/src/library/stdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/library/stdio.cpp -------------------------------------------------------------------------------- /kernel/src/library/stdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/library/stdio.hpp -------------------------------------------------------------------------------- /kernel/src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/math.h -------------------------------------------------------------------------------- /kernel/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/memory.cpp -------------------------------------------------------------------------------- /kernel/src/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/memory.hpp -------------------------------------------------------------------------------- /kernel/src/memory/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/memory/heap.cpp -------------------------------------------------------------------------------- /kernel/src/memory/heap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/memory/heap.hpp -------------------------------------------------------------------------------- /kernel/src/paging/PageFrameAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/paging/PageFrameAllocator.cpp -------------------------------------------------------------------------------- /kernel/src/paging/PageFrameAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/paging/PageFrameAllocator.hpp -------------------------------------------------------------------------------- /kernel/src/paging/PageMapIndexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/paging/PageMapIndexer.cpp -------------------------------------------------------------------------------- /kernel/src/paging/PageMapIndexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/paging/PageMapIndexer.hpp -------------------------------------------------------------------------------- /kernel/src/paging/PageTableManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/paging/PageTableManager.cpp -------------------------------------------------------------------------------- /kernel/src/paging/PageTableManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/paging/PageTableManager.hpp -------------------------------------------------------------------------------- /kernel/src/paging/paging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/paging/paging.cpp -------------------------------------------------------------------------------- /kernel/src/paging/paging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/paging/paging.hpp -------------------------------------------------------------------------------- /kernel/src/panic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/panic.cpp -------------------------------------------------------------------------------- /kernel/src/panic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/panic.hpp -------------------------------------------------------------------------------- /kernel/src/pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/pci.cpp -------------------------------------------------------------------------------- /kernel/src/pci.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/pci.hpp -------------------------------------------------------------------------------- /kernel/src/pciDescriptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/pciDescriptors.cpp -------------------------------------------------------------------------------- /kernel/src/scheduling/pit/pit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/scheduling/pit/pit.cpp -------------------------------------------------------------------------------- /kernel/src/scheduling/pit/pit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/scheduling/pit/pit.hpp -------------------------------------------------------------------------------- /kernel/src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/settings.h -------------------------------------------------------------------------------- /kernel/src/shutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/shutdown.cpp -------------------------------------------------------------------------------- /kernel/src/shutdown.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/shutdown.hpp -------------------------------------------------------------------------------- /kernel/src/simpleFonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/simpleFonts.h -------------------------------------------------------------------------------- /kernel/src/smbios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/smbios.cpp -------------------------------------------------------------------------------- /kernel/src/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/smbios.h -------------------------------------------------------------------------------- /kernel/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/test.c -------------------------------------------------------------------------------- /kernel/src/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/test.h -------------------------------------------------------------------------------- /kernel/src/tga/tga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/tga/tga.cpp -------------------------------------------------------------------------------- /kernel/src/tga/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/tga/tga.h -------------------------------------------------------------------------------- /kernel/src/userinput/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/userinput/keyboard.cpp -------------------------------------------------------------------------------- /kernel/src/userinput/keyboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/userinput/keyboard.hpp -------------------------------------------------------------------------------- /kernel/src/userinput/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/userinput/mouse.cpp -------------------------------------------------------------------------------- /kernel/src/userinput/mouse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/src/userinput/mouse.hpp -------------------------------------------------------------------------------- /kernel/startup.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/kernel/startup.nsh -------------------------------------------------------------------------------- /lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/lua.sh -------------------------------------------------------------------------------- /ringOS Pixel art.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/ringOS Pixel art.xlsx -------------------------------------------------------------------------------- /ringOS-beta-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/ringOS-beta-arch.sh -------------------------------------------------------------------------------- /ringOS-beta-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/ringOS-beta-debian.sh -------------------------------------------------------------------------------- /ringOS-beta-redhat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/ringOS-beta-redhat.sh -------------------------------------------------------------------------------- /ringOS-stable-Builder-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/ringOS-stable-Builder-arch.sh -------------------------------------------------------------------------------- /ringOS-stable-Builder-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/ringOS-stable-Builder-debian.sh -------------------------------------------------------------------------------- /ringOS-stable-Builder-redhat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringwormGO-organization/ringOS/HEAD/ringOS-stable-Builder-redhat.sh --------------------------------------------------------------------------------