├── .gdbinit ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── LICENSE ├── OVMFbin ├── OVMF_CODE-pure-efi.fd ├── OVMF_VARS-pure-efi.fd └── README.md ├── README.md ├── TODO.org ├── base ├── inc │ └── .gitignore └── lib │ ├── crt0.o │ ├── crti.o │ ├── crtn.o │ └── libc.a ├── gnu-efi ├── .gitignore ├── ChangeLog ├── Make.defaults ├── Make.rules ├── Makefile ├── README.efilib ├── README.elilo ├── README.git ├── README.gnuefi ├── apps │ ├── AllocPages.c │ ├── FreePages.c │ ├── Makefile │ ├── bltgrid.c │ ├── debughook.c │ ├── drv0.c │ ├── drv0.h │ ├── drv0_use.c │ ├── exit.c │ ├── lfbgrid.c │ ├── modelist.c │ ├── printenv.c │ ├── route80h.c │ ├── setdbg.c │ ├── setjmp.c │ ├── t.c │ ├── t2.c │ ├── t3.c │ ├── t4.c │ ├── t5.c │ ├── t6.c │ ├── t7.c │ ├── t8.c │ ├── tcc.c │ ├── tpause.c │ ├── trivial.S │ └── unsetdbg.c ├── bootloader │ ├── Makefile │ └── main.c ├── gnuefi │ ├── Makefile │ ├── crt0-efi-aarch64.S │ ├── crt0-efi-arm.S │ ├── crt0-efi-ia32.S │ ├── crt0-efi-ia64.S │ ├── crt0-efi-mips64el.S │ ├── crt0-efi-x86_64.S │ ├── elf_aarch64_efi.lds │ ├── elf_arm_efi.lds │ ├── elf_ia32_efi.lds │ ├── elf_ia32_fbsd_efi.lds │ ├── elf_ia64_efi.lds │ ├── elf_mips64el_efi.lds │ ├── elf_x86_64_efi.lds │ ├── elf_x86_64_fbsd_efi.lds │ ├── reloc_aarch64.c │ ├── reloc_arm.c │ ├── reloc_ia32.c │ ├── reloc_ia64.S │ ├── reloc_mips64el.c │ └── reloc_x86_64.c ├── inc │ ├── Makefile │ ├── aarch64 │ │ ├── efibind.h │ │ ├── efilibplat.h │ │ └── efisetjmp_arch.h │ ├── arm │ │ ├── efibind.h │ │ ├── efilibplat.h │ │ └── efisetjmp_arch.h │ ├── efi.h │ ├── efi_nii.h │ ├── efi_pxe.h │ ├── efiapi.h │ ├── eficompiler.h │ ├── eficon.h │ ├── efidebug.h │ ├── efidef.h │ ├── efidevp.h │ ├── efierr.h │ ├── efifs.h │ ├── efigpt.h │ ├── efiip.h │ ├── efilib.h │ ├── efilink.h │ ├── efinet.h │ ├── efipart.h │ ├── efipciio.h │ ├── efipoint.h │ ├── efiprot.h │ ├── efipxebc.h │ ├── efirtlib.h │ ├── efiser.h │ ├── efisetjmp.h │ ├── efishellintf.h │ ├── efishellparm.h │ ├── efistdarg.h │ ├── efitcp.h │ ├── efiudp.h │ ├── efiui.h │ ├── ia32 │ │ ├── efibind.h │ │ ├── efilibplat.h │ │ ├── efisetjmp_arch.h │ │ └── pe.h │ ├── ia64 │ │ ├── efibind.h │ │ ├── efilibplat.h │ │ ├── efisetjmp_arch.h │ │ ├── pe.h │ │ └── salproc.h │ ├── inc.mak │ ├── libsmbios.h │ ├── make.inf │ ├── makefile.hdr │ ├── mips64el │ │ ├── efibind.h │ │ ├── efilibplat.h │ │ └── efisetjmp_arch.h │ ├── pci22.h │ ├── protocol │ │ ├── adapterdebug.h │ │ ├── eficonsplit.h │ │ ├── efidbg.h │ │ ├── efivar.h │ │ ├── ia64 │ │ │ └── eficontext.h │ │ ├── intload.h │ │ ├── legacyboot.h │ │ ├── make.inf │ │ ├── makefile.hdr │ │ ├── piflash64.h │ │ ├── readme.txt │ │ └── vgaclass.h │ ├── romload.h │ └── x86_64 │ │ ├── efibind.h │ │ ├── efilibplat.h │ │ ├── efisetjmp_arch.h │ │ └── pe.h └── lib │ ├── Makefile │ ├── Makefile.orig │ ├── aarch64 │ ├── efi_stub.S │ ├── initplat.c │ ├── math.c │ └── setjmp.S │ ├── arm │ ├── div.S │ ├── edk2asm.h │ ├── efi_stub.S │ ├── initplat.c │ ├── ldivmod.S │ ├── llsl.S │ ├── llsr.S │ ├── math.c │ ├── mullu.S │ ├── setjmp.S │ └── uldiv.S │ ├── boxdraw.c │ ├── cmdline.c │ ├── console.c │ ├── crc.c │ ├── data.c │ ├── debug.c │ ├── dpath.c │ ├── error.c │ ├── event.c │ ├── exit.c │ ├── guid.c │ ├── hand.c │ ├── hw.c │ ├── ia32 │ ├── efi_stub.S │ ├── initplat.c │ ├── math.c │ └── setjmp.S │ ├── ia64 │ ├── initplat.c │ ├── math.c │ ├── palproc.S │ ├── palproc.h │ ├── salpal.c │ └── setjmp.S │ ├── init.c │ ├── lib.h │ ├── lock.c │ ├── mips64el │ ├── efi_stub.S │ ├── initplat.c │ ├── math.c │ └── setjmp.S │ ├── misc.c │ ├── print.c │ ├── runtime │ ├── efirtlib.c │ ├── rtdata.c │ ├── rtlock.c │ ├── rtstr.c │ └── vm.c │ ├── smbios.c │ ├── sread.c │ ├── str.c │ └── x86_64 │ ├── callwrap.c │ ├── efi_stub.S │ ├── initplat.c │ ├── math.c │ └── setjmp.S ├── hello.txt ├── kernel ├── CMakeLists.txt ├── kernel.ld ├── res │ └── dfltfont.psf └── src │ ├── acpi.cpp │ ├── acpi.h │ ├── ahci.cpp │ ├── ahci.h │ ├── basic_renderer.cpp │ ├── basic_renderer.h │ ├── bitmap.cpp │ ├── bitmap.h │ ├── boot.h │ ├── cpu.h │ ├── cpuid.asm │ ├── cpuid.cpp │ ├── cpuid.h │ ├── cstr.cpp │ ├── cstr.h │ ├── debug.cpp │ ├── debug.h │ ├── devices │ ├── devices.cpp │ └── devices.h │ ├── e1000.cpp │ ├── e1000.h │ ├── efi_memory.cpp │ ├── efi_memory.h │ ├── elf.h │ ├── elf_loader.h │ ├── event.cpp │ ├── event.h │ ├── fat_definitions.h │ ├── file.h │ ├── gdt.asm │ ├── gdt.cpp │ ├── gdt.h │ ├── gpt.cpp │ ├── gpt.h │ ├── gpt_partition_type_guids.h │ ├── guid.h │ ├── hpet.cpp │ ├── hpet.h │ ├── inode.h │ ├── integers.h │ ├── interrupts │ ├── idt.cpp │ ├── idt.h │ ├── interrupts.cpp │ ├── interrupts.h │ ├── syscalls.asm │ ├── syscalls.cpp │ └── syscalls.h │ ├── io.cpp │ ├── io.h │ ├── kernel.cpp │ ├── kernel.h │ ├── keyboard.cpp │ ├── keyboard.h │ ├── keyboard_scancode_translation.cpp │ ├── keyboard_scancode_translation.h │ ├── kstage1.cpp │ ├── kstage1.h │ ├── large_integers.h │ ├── link_definitions.h │ ├── linked_list.h │ ├── math.h │ ├── memory.cpp │ ├── memory.h │ ├── memory │ ├── common.h │ ├── heap.cpp │ ├── heap.h │ ├── paging.h │ ├── physical_memory_manager.cpp │ ├── physical_memory_manager.h │ ├── region.h │ ├── virtual_memory_manager.cpp │ └── virtual_memory_manager.h │ ├── mouse.cpp │ ├── mouse.h │ ├── panic.cpp │ ├── panic.h │ ├── pci.cpp │ ├── pci.h │ ├── pci_descriptors.cpp │ ├── pit.cpp │ ├── pit.h │ ├── prekernel.asm │ ├── pure_virtuals.cpp │ ├── pure_virtuals.h │ ├── random_lcg.cpp │ ├── random_lcg.h │ ├── random_lfsr.cpp │ ├── random_lfsr.h │ ├── rtc.cpp │ ├── rtc.h │ ├── scheduler.asm │ ├── scheduler.cpp │ ├── scheduler.h │ ├── spinlock.cpp │ ├── spinlock.h │ ├── storage │ ├── device_drivers │ │ ├── gpt_partition.h │ │ ├── port_controller.cpp │ │ └── port_controller.h │ ├── file_metadata.h │ ├── filesystem_driver.h │ ├── filesystem_drivers │ │ ├── dbgout.h │ │ ├── file_allocation_table.cpp │ │ ├── file_allocation_table.h │ │ ├── input.cpp │ │ ├── input.h │ │ ├── pipe.cpp │ │ ├── pipe.h │ │ ├── socket.cpp │ │ └── socket.h │ └── storage_device_driver.h │ ├── system.cpp │ ├── system.h │ ├── tests.cpp │ ├── tests.h │ ├── time.h │ ├── tss.cpp │ ├── tss.h │ ├── uart.cpp │ ├── uart.h │ ├── userswitch.asm │ ├── utf.cpp │ ├── utf.h │ ├── va_list.h │ ├── vfs_forward.h │ ├── virtual_filesystem.cpp │ ├── virtual_filesystem.h │ └── x86_64 │ └── cpu.h ├── known_bugs.org ├── oldTODO.org ├── scripts ├── README.md ├── buildrun.bat ├── buildrun.sh ├── cinclude2dot.sh ├── install_mkgpt.sh ├── mkbootdir.sh ├── mkfat32efibootimage.cmake ├── mkfat32images.cmake ├── mkfat32lensorosdata.cmake ├── mkgpt.sh ├── mkimg.bat ├── mkimg.ps1 ├── mkimg.sh ├── mkiso.bat ├── mkiso.ps1 ├── mkiso.sh ├── run.bat ├── run.ps1 ├── run.sh ├── rundbg.bat ├── rundbg.sh ├── runhda.bat ├── runhda.ps1 ├── runhda.sh ├── runhdadbg.bat ├── runhdadbg.sh ├── runiso.bat ├── runiso.ps1 ├── runiso.sh ├── startup.nsh └── sysroot.sh ├── std └── include │ ├── .gitattributes │ ├── algorithm │ ├── array │ ├── atomic │ ├── bit │ ├── bits │ ├── colours.h │ ├── decls.h │ └── terminate.h │ ├── cmath │ ├── concepts │ ├── cstring │ ├── ctype.h │ ├── extensions │ ├── extensions_double_ended_queue │ ├── extensions_ring_buffer │ ├── extensions_sparse_vector │ ├── filesystem │ ├── format │ ├── functional │ ├── iterator │ ├── locale │ ├── memory │ ├── mutex │ ├── new │ ├── stddef.h │ ├── stdint.h │ ├── string │ ├── string_view │ ├── type_traits │ ├── unordered_map │ ├── utility │ └── vector ├── structure.dot ├── toolchain ├── .gitignore ├── README.md ├── binutils-2.38-lensor.patch ├── config.cmake ├── gcc-11.2.0-lensor.patch ├── gcc-12.1.0-lensor.patch ├── lensor.h ├── lensor_gnu_toolchain.cmake ├── toolchain.sh └── win_toolchain.sh └── user ├── CMakeLists.txt ├── blazeit ├── CMakeLists.txt └── main.c ├── cat ├── CMakeLists.txt └── main.cpp ├── clienttest ├── CMakeLists.txt └── main.c ├── echo ├── CMakeLists.txt └── main.cpp ├── libc ├── CMakeLists.txt ├── README.md ├── abi.cpp ├── assert.h ├── bits │ ├── abi.h │ ├── cdtors.h │ ├── file_struct.h │ ├── io_defs.h │ ├── string_intrinsics.h │ └── stub.h ├── crt0.s ├── crti.s ├── crtn.s ├── errno.h ├── float.h ├── install-headers.cmake ├── install.sh ├── limits.h ├── stdalign.h ├── stdarg.h ├── stdbool.h ├── stdio.cpp ├── stdio.h ├── stdlib.cpp ├── stdlib.h ├── stdnoreturn.h ├── string.cpp ├── string.h ├── sys │ ├── intrin.h │ ├── syscalls.h │ └── types.h ├── template.h ├── test │ ├── CMakeLists.txt │ └── test.cc ├── tests │ ├── CMakeLists.txt │ ├── add-test.sh │ ├── test │ │ └── string │ │ │ ├── base.cpp │ │ │ ├── cat.cpp │ │ │ ├── compare-lex.cpp │ │ │ ├── compare.cpp │ │ │ ├── erase.cpp │ │ │ ├── misc.cpp │ │ │ ├── starts-ends.cpp │ │ │ ├── substr.cpp │ │ │ └── view.cpp │ └── testing.hh ├── time.h ├── unistd.cpp └── unistd.h ├── libm ├── CMakeLists.txt └── src │ └── stub.cpp ├── libstdc++ ├── CMakeLists.txt └── src │ ├── filesystem.cpp │ └── stub.cpp ├── ls ├── CMakeLists.txt └── main.cpp ├── pwd ├── CMakeLists.txt └── main.c ├── servertest ├── CMakeLists.txt └── main.c ├── stdout ├── CMakeLists.txt ├── framebuffer.c ├── framebuffer.h ├── ints.h ├── main.c ├── psf.c └── psf.h └── xish ├── CMakeLists.txt └── src └── main.cpp /.gdbinit: -------------------------------------------------------------------------------- 1 | target remote localhost:1234 2 | symbol-file ./boot/LensorOS/kernel.elf 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/LICENSE -------------------------------------------------------------------------------- /OVMFbin/OVMF_CODE-pure-efi.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/OVMFbin/OVMF_CODE-pure-efi.fd -------------------------------------------------------------------------------- /OVMFbin/OVMF_VARS-pure-efi.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/OVMFbin/OVMF_VARS-pure-efi.fd -------------------------------------------------------------------------------- /OVMFbin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/OVMFbin/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/README.md -------------------------------------------------------------------------------- /TODO.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/TODO.org -------------------------------------------------------------------------------- /base/inc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/lib/crt0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/base/lib/crt0.o -------------------------------------------------------------------------------- /base/lib/crti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/base/lib/crti.o -------------------------------------------------------------------------------- /base/lib/crtn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/base/lib/crtn.o -------------------------------------------------------------------------------- /base/lib/libc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/base/lib/libc.a -------------------------------------------------------------------------------- /gnu-efi/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated folder + files from `make bootloader` 2 | /x86_64/ -------------------------------------------------------------------------------- /gnu-efi/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/ChangeLog -------------------------------------------------------------------------------- /gnu-efi/Make.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/Make.defaults -------------------------------------------------------------------------------- /gnu-efi/Make.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/Make.rules -------------------------------------------------------------------------------- /gnu-efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/Makefile -------------------------------------------------------------------------------- /gnu-efi/README.efilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/README.efilib -------------------------------------------------------------------------------- /gnu-efi/README.elilo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/README.elilo -------------------------------------------------------------------------------- /gnu-efi/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/README.git -------------------------------------------------------------------------------- /gnu-efi/README.gnuefi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/README.gnuefi -------------------------------------------------------------------------------- /gnu-efi/apps/AllocPages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/AllocPages.c -------------------------------------------------------------------------------- /gnu-efi/apps/FreePages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/FreePages.c -------------------------------------------------------------------------------- /gnu-efi/apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/Makefile -------------------------------------------------------------------------------- /gnu-efi/apps/bltgrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/bltgrid.c -------------------------------------------------------------------------------- /gnu-efi/apps/debughook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/debughook.c -------------------------------------------------------------------------------- /gnu-efi/apps/drv0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/drv0.c -------------------------------------------------------------------------------- /gnu-efi/apps/drv0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/drv0.h -------------------------------------------------------------------------------- /gnu-efi/apps/drv0_use.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/drv0_use.c -------------------------------------------------------------------------------- /gnu-efi/apps/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/exit.c -------------------------------------------------------------------------------- /gnu-efi/apps/lfbgrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/lfbgrid.c -------------------------------------------------------------------------------- /gnu-efi/apps/modelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/modelist.c -------------------------------------------------------------------------------- /gnu-efi/apps/printenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/printenv.c -------------------------------------------------------------------------------- /gnu-efi/apps/route80h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/route80h.c -------------------------------------------------------------------------------- /gnu-efi/apps/setdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/setdbg.c -------------------------------------------------------------------------------- /gnu-efi/apps/setjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/setjmp.c -------------------------------------------------------------------------------- /gnu-efi/apps/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/t.c -------------------------------------------------------------------------------- /gnu-efi/apps/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/t2.c -------------------------------------------------------------------------------- /gnu-efi/apps/t3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/t3.c -------------------------------------------------------------------------------- /gnu-efi/apps/t4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/t4.c -------------------------------------------------------------------------------- /gnu-efi/apps/t5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/t5.c -------------------------------------------------------------------------------- /gnu-efi/apps/t6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/t6.c -------------------------------------------------------------------------------- /gnu-efi/apps/t7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/t7.c -------------------------------------------------------------------------------- /gnu-efi/apps/t8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/t8.c -------------------------------------------------------------------------------- /gnu-efi/apps/tcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/tcc.c -------------------------------------------------------------------------------- /gnu-efi/apps/tpause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/tpause.c -------------------------------------------------------------------------------- /gnu-efi/apps/trivial.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/trivial.S -------------------------------------------------------------------------------- /gnu-efi/apps/unsetdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/apps/unsetdbg.c -------------------------------------------------------------------------------- /gnu-efi/bootloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/bootloader/Makefile -------------------------------------------------------------------------------- /gnu-efi/bootloader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/bootloader/main.c -------------------------------------------------------------------------------- /gnu-efi/gnuefi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/Makefile -------------------------------------------------------------------------------- /gnu-efi/gnuefi/crt0-efi-aarch64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/crt0-efi-aarch64.S -------------------------------------------------------------------------------- /gnu-efi/gnuefi/crt0-efi-arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/crt0-efi-arm.S -------------------------------------------------------------------------------- /gnu-efi/gnuefi/crt0-efi-ia32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/crt0-efi-ia32.S -------------------------------------------------------------------------------- /gnu-efi/gnuefi/crt0-efi-ia64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/crt0-efi-ia64.S -------------------------------------------------------------------------------- /gnu-efi/gnuefi/crt0-efi-mips64el.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/crt0-efi-mips64el.S -------------------------------------------------------------------------------- /gnu-efi/gnuefi/crt0-efi-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/crt0-efi-x86_64.S -------------------------------------------------------------------------------- /gnu-efi/gnuefi/elf_aarch64_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/elf_aarch64_efi.lds -------------------------------------------------------------------------------- /gnu-efi/gnuefi/elf_arm_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/elf_arm_efi.lds -------------------------------------------------------------------------------- /gnu-efi/gnuefi/elf_ia32_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/elf_ia32_efi.lds -------------------------------------------------------------------------------- /gnu-efi/gnuefi/elf_ia32_fbsd_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/elf_ia32_fbsd_efi.lds -------------------------------------------------------------------------------- /gnu-efi/gnuefi/elf_ia64_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/elf_ia64_efi.lds -------------------------------------------------------------------------------- /gnu-efi/gnuefi/elf_mips64el_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/elf_mips64el_efi.lds -------------------------------------------------------------------------------- /gnu-efi/gnuefi/elf_x86_64_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/elf_x86_64_efi.lds -------------------------------------------------------------------------------- /gnu-efi/gnuefi/elf_x86_64_fbsd_efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/elf_x86_64_fbsd_efi.lds -------------------------------------------------------------------------------- /gnu-efi/gnuefi/reloc_aarch64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/reloc_aarch64.c -------------------------------------------------------------------------------- /gnu-efi/gnuefi/reloc_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/reloc_arm.c -------------------------------------------------------------------------------- /gnu-efi/gnuefi/reloc_ia32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/reloc_ia32.c -------------------------------------------------------------------------------- /gnu-efi/gnuefi/reloc_ia64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/reloc_ia64.S -------------------------------------------------------------------------------- /gnu-efi/gnuefi/reloc_mips64el.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/reloc_mips64el.c -------------------------------------------------------------------------------- /gnu-efi/gnuefi/reloc_x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/gnuefi/reloc_x86_64.c -------------------------------------------------------------------------------- /gnu-efi/inc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/Makefile -------------------------------------------------------------------------------- /gnu-efi/inc/aarch64/efibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/aarch64/efibind.h -------------------------------------------------------------------------------- /gnu-efi/inc/aarch64/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/aarch64/efilibplat.h -------------------------------------------------------------------------------- /gnu-efi/inc/aarch64/efisetjmp_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/aarch64/efisetjmp_arch.h -------------------------------------------------------------------------------- /gnu-efi/inc/arm/efibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/arm/efibind.h -------------------------------------------------------------------------------- /gnu-efi/inc/arm/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/arm/efilibplat.h -------------------------------------------------------------------------------- /gnu-efi/inc/arm/efisetjmp_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/arm/efisetjmp_arch.h -------------------------------------------------------------------------------- /gnu-efi/inc/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efi.h -------------------------------------------------------------------------------- /gnu-efi/inc/efi_nii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efi_nii.h -------------------------------------------------------------------------------- /gnu-efi/inc/efi_pxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efi_pxe.h -------------------------------------------------------------------------------- /gnu-efi/inc/efiapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efiapi.h -------------------------------------------------------------------------------- /gnu-efi/inc/eficompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/eficompiler.h -------------------------------------------------------------------------------- /gnu-efi/inc/eficon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/eficon.h -------------------------------------------------------------------------------- /gnu-efi/inc/efidebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efidebug.h -------------------------------------------------------------------------------- /gnu-efi/inc/efidef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efidef.h -------------------------------------------------------------------------------- /gnu-efi/inc/efidevp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efidevp.h -------------------------------------------------------------------------------- /gnu-efi/inc/efierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efierr.h -------------------------------------------------------------------------------- /gnu-efi/inc/efifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efifs.h -------------------------------------------------------------------------------- /gnu-efi/inc/efigpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efigpt.h -------------------------------------------------------------------------------- /gnu-efi/inc/efiip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efiip.h -------------------------------------------------------------------------------- /gnu-efi/inc/efilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efilib.h -------------------------------------------------------------------------------- /gnu-efi/inc/efilink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efilink.h -------------------------------------------------------------------------------- /gnu-efi/inc/efinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efinet.h -------------------------------------------------------------------------------- /gnu-efi/inc/efipart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efipart.h -------------------------------------------------------------------------------- /gnu-efi/inc/efipciio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efipciio.h -------------------------------------------------------------------------------- /gnu-efi/inc/efipoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efipoint.h -------------------------------------------------------------------------------- /gnu-efi/inc/efiprot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efiprot.h -------------------------------------------------------------------------------- /gnu-efi/inc/efipxebc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efipxebc.h -------------------------------------------------------------------------------- /gnu-efi/inc/efirtlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efirtlib.h -------------------------------------------------------------------------------- /gnu-efi/inc/efiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efiser.h -------------------------------------------------------------------------------- /gnu-efi/inc/efisetjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efisetjmp.h -------------------------------------------------------------------------------- /gnu-efi/inc/efishellintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efishellintf.h -------------------------------------------------------------------------------- /gnu-efi/inc/efishellparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efishellparm.h -------------------------------------------------------------------------------- /gnu-efi/inc/efistdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efistdarg.h -------------------------------------------------------------------------------- /gnu-efi/inc/efitcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efitcp.h -------------------------------------------------------------------------------- /gnu-efi/inc/efiudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efiudp.h -------------------------------------------------------------------------------- /gnu-efi/inc/efiui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/efiui.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia32/efibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia32/efibind.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia32/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia32/efilibplat.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia32/efisetjmp_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia32/efisetjmp_arch.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia32/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia32/pe.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia64/efibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia64/efibind.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia64/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia64/efilibplat.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia64/efisetjmp_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia64/efisetjmp_arch.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia64/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia64/pe.h -------------------------------------------------------------------------------- /gnu-efi/inc/ia64/salproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/ia64/salproc.h -------------------------------------------------------------------------------- /gnu-efi/inc/inc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/inc.mak -------------------------------------------------------------------------------- /gnu-efi/inc/libsmbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/libsmbios.h -------------------------------------------------------------------------------- /gnu-efi/inc/make.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/make.inf -------------------------------------------------------------------------------- /gnu-efi/inc/makefile.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/makefile.hdr -------------------------------------------------------------------------------- /gnu-efi/inc/mips64el/efibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/mips64el/efibind.h -------------------------------------------------------------------------------- /gnu-efi/inc/mips64el/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/mips64el/efilibplat.h -------------------------------------------------------------------------------- /gnu-efi/inc/mips64el/efisetjmp_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/mips64el/efisetjmp_arch.h -------------------------------------------------------------------------------- /gnu-efi/inc/pci22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/pci22.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/adapterdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/adapterdebug.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/eficonsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/eficonsplit.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/efidbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/efidbg.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/efivar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/efivar.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/ia64/eficontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/ia64/eficontext.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/intload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/intload.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/legacyboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/legacyboot.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/make.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/make.inf -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/makefile.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/makefile.hdr -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/piflash64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/piflash64.h -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/readme.txt -------------------------------------------------------------------------------- /gnu-efi/inc/protocol/vgaclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/protocol/vgaclass.h -------------------------------------------------------------------------------- /gnu-efi/inc/romload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/romload.h -------------------------------------------------------------------------------- /gnu-efi/inc/x86_64/efibind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/x86_64/efibind.h -------------------------------------------------------------------------------- /gnu-efi/inc/x86_64/efilibplat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/x86_64/efilibplat.h -------------------------------------------------------------------------------- /gnu-efi/inc/x86_64/efisetjmp_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/x86_64/efisetjmp_arch.h -------------------------------------------------------------------------------- /gnu-efi/inc/x86_64/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/inc/x86_64/pe.h -------------------------------------------------------------------------------- /gnu-efi/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/Makefile -------------------------------------------------------------------------------- /gnu-efi/lib/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/Makefile.orig -------------------------------------------------------------------------------- /gnu-efi/lib/aarch64/efi_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/aarch64/efi_stub.S -------------------------------------------------------------------------------- /gnu-efi/lib/aarch64/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/aarch64/initplat.c -------------------------------------------------------------------------------- /gnu-efi/lib/aarch64/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/aarch64/math.c -------------------------------------------------------------------------------- /gnu-efi/lib/aarch64/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/aarch64/setjmp.S -------------------------------------------------------------------------------- /gnu-efi/lib/arm/div.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/div.S -------------------------------------------------------------------------------- /gnu-efi/lib/arm/edk2asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/edk2asm.h -------------------------------------------------------------------------------- /gnu-efi/lib/arm/efi_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/efi_stub.S -------------------------------------------------------------------------------- /gnu-efi/lib/arm/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/initplat.c -------------------------------------------------------------------------------- /gnu-efi/lib/arm/ldivmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/ldivmod.S -------------------------------------------------------------------------------- /gnu-efi/lib/arm/llsl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/llsl.S -------------------------------------------------------------------------------- /gnu-efi/lib/arm/llsr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/llsr.S -------------------------------------------------------------------------------- /gnu-efi/lib/arm/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/math.c -------------------------------------------------------------------------------- /gnu-efi/lib/arm/mullu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/mullu.S -------------------------------------------------------------------------------- /gnu-efi/lib/arm/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/setjmp.S -------------------------------------------------------------------------------- /gnu-efi/lib/arm/uldiv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/arm/uldiv.S -------------------------------------------------------------------------------- /gnu-efi/lib/boxdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/boxdraw.c -------------------------------------------------------------------------------- /gnu-efi/lib/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/cmdline.c -------------------------------------------------------------------------------- /gnu-efi/lib/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/console.c -------------------------------------------------------------------------------- /gnu-efi/lib/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/crc.c -------------------------------------------------------------------------------- /gnu-efi/lib/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/data.c -------------------------------------------------------------------------------- /gnu-efi/lib/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/debug.c -------------------------------------------------------------------------------- /gnu-efi/lib/dpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/dpath.c -------------------------------------------------------------------------------- /gnu-efi/lib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/error.c -------------------------------------------------------------------------------- /gnu-efi/lib/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/event.c -------------------------------------------------------------------------------- /gnu-efi/lib/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/exit.c -------------------------------------------------------------------------------- /gnu-efi/lib/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/guid.c -------------------------------------------------------------------------------- /gnu-efi/lib/hand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/hand.c -------------------------------------------------------------------------------- /gnu-efi/lib/hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/hw.c -------------------------------------------------------------------------------- /gnu-efi/lib/ia32/efi_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia32/efi_stub.S -------------------------------------------------------------------------------- /gnu-efi/lib/ia32/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia32/initplat.c -------------------------------------------------------------------------------- /gnu-efi/lib/ia32/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia32/math.c -------------------------------------------------------------------------------- /gnu-efi/lib/ia32/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia32/setjmp.S -------------------------------------------------------------------------------- /gnu-efi/lib/ia64/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia64/initplat.c -------------------------------------------------------------------------------- /gnu-efi/lib/ia64/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia64/math.c -------------------------------------------------------------------------------- /gnu-efi/lib/ia64/palproc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia64/palproc.S -------------------------------------------------------------------------------- /gnu-efi/lib/ia64/palproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia64/palproc.h -------------------------------------------------------------------------------- /gnu-efi/lib/ia64/salpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia64/salpal.c -------------------------------------------------------------------------------- /gnu-efi/lib/ia64/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/ia64/setjmp.S -------------------------------------------------------------------------------- /gnu-efi/lib/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/init.c -------------------------------------------------------------------------------- /gnu-efi/lib/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/lib.h -------------------------------------------------------------------------------- /gnu-efi/lib/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/lock.c -------------------------------------------------------------------------------- /gnu-efi/lib/mips64el/efi_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/mips64el/efi_stub.S -------------------------------------------------------------------------------- /gnu-efi/lib/mips64el/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/mips64el/initplat.c -------------------------------------------------------------------------------- /gnu-efi/lib/mips64el/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/mips64el/math.c -------------------------------------------------------------------------------- /gnu-efi/lib/mips64el/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/mips64el/setjmp.S -------------------------------------------------------------------------------- /gnu-efi/lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/misc.c -------------------------------------------------------------------------------- /gnu-efi/lib/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/print.c -------------------------------------------------------------------------------- /gnu-efi/lib/runtime/efirtlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/runtime/efirtlib.c -------------------------------------------------------------------------------- /gnu-efi/lib/runtime/rtdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/runtime/rtdata.c -------------------------------------------------------------------------------- /gnu-efi/lib/runtime/rtlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/runtime/rtlock.c -------------------------------------------------------------------------------- /gnu-efi/lib/runtime/rtstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/runtime/rtstr.c -------------------------------------------------------------------------------- /gnu-efi/lib/runtime/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/runtime/vm.c -------------------------------------------------------------------------------- /gnu-efi/lib/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/smbios.c -------------------------------------------------------------------------------- /gnu-efi/lib/sread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/sread.c -------------------------------------------------------------------------------- /gnu-efi/lib/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/str.c -------------------------------------------------------------------------------- /gnu-efi/lib/x86_64/callwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/x86_64/callwrap.c -------------------------------------------------------------------------------- /gnu-efi/lib/x86_64/efi_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/x86_64/efi_stub.S -------------------------------------------------------------------------------- /gnu-efi/lib/x86_64/initplat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/x86_64/initplat.c -------------------------------------------------------------------------------- /gnu-efi/lib/x86_64/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/x86_64/math.c -------------------------------------------------------------------------------- /gnu-efi/lib/x86_64/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/gnu-efi/lib/x86_64/setjmp.S -------------------------------------------------------------------------------- /hello.txt: -------------------------------------------------------------------------------- 1 | Hello from Emacs! <3 2 | -------------------------------------------------------------------------------- /kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/CMakeLists.txt -------------------------------------------------------------------------------- /kernel/kernel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/kernel.ld -------------------------------------------------------------------------------- /kernel/res/dfltfont.psf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/res/dfltfont.psf -------------------------------------------------------------------------------- /kernel/src/acpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/acpi.cpp -------------------------------------------------------------------------------- /kernel/src/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/acpi.h -------------------------------------------------------------------------------- /kernel/src/ahci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/ahci.cpp -------------------------------------------------------------------------------- /kernel/src/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/ahci.h -------------------------------------------------------------------------------- /kernel/src/basic_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/basic_renderer.cpp -------------------------------------------------------------------------------- /kernel/src/basic_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/basic_renderer.h -------------------------------------------------------------------------------- /kernel/src/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/bitmap.cpp -------------------------------------------------------------------------------- /kernel/src/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/bitmap.h -------------------------------------------------------------------------------- /kernel/src/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/boot.h -------------------------------------------------------------------------------- /kernel/src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/cpu.h -------------------------------------------------------------------------------- /kernel/src/cpuid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/cpuid.asm -------------------------------------------------------------------------------- /kernel/src/cpuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/cpuid.cpp -------------------------------------------------------------------------------- /kernel/src/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/cpuid.h -------------------------------------------------------------------------------- /kernel/src/cstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/cstr.cpp -------------------------------------------------------------------------------- /kernel/src/cstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/cstr.h -------------------------------------------------------------------------------- /kernel/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/debug.cpp -------------------------------------------------------------------------------- /kernel/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/debug.h -------------------------------------------------------------------------------- /kernel/src/devices/devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/devices/devices.cpp -------------------------------------------------------------------------------- /kernel/src/devices/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/devices/devices.h -------------------------------------------------------------------------------- /kernel/src/e1000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/e1000.cpp -------------------------------------------------------------------------------- /kernel/src/e1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/e1000.h -------------------------------------------------------------------------------- /kernel/src/efi_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/efi_memory.cpp -------------------------------------------------------------------------------- /kernel/src/efi_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/efi_memory.h -------------------------------------------------------------------------------- /kernel/src/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/elf.h -------------------------------------------------------------------------------- /kernel/src/elf_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/elf_loader.h -------------------------------------------------------------------------------- /kernel/src/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/event.cpp -------------------------------------------------------------------------------- /kernel/src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/event.h -------------------------------------------------------------------------------- /kernel/src/fat_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/fat_definitions.h -------------------------------------------------------------------------------- /kernel/src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/file.h -------------------------------------------------------------------------------- /kernel/src/gdt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/gdt.asm -------------------------------------------------------------------------------- /kernel/src/gdt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/gdt.cpp -------------------------------------------------------------------------------- /kernel/src/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/gdt.h -------------------------------------------------------------------------------- /kernel/src/gpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/gpt.cpp -------------------------------------------------------------------------------- /kernel/src/gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/gpt.h -------------------------------------------------------------------------------- /kernel/src/gpt_partition_type_guids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/gpt_partition_type_guids.h -------------------------------------------------------------------------------- /kernel/src/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/guid.h -------------------------------------------------------------------------------- /kernel/src/hpet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/hpet.cpp -------------------------------------------------------------------------------- /kernel/src/hpet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/hpet.h -------------------------------------------------------------------------------- /kernel/src/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/inode.h -------------------------------------------------------------------------------- /kernel/src/integers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/integers.h -------------------------------------------------------------------------------- /kernel/src/interrupts/idt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/interrupts/idt.cpp -------------------------------------------------------------------------------- /kernel/src/interrupts/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/interrupts/idt.h -------------------------------------------------------------------------------- /kernel/src/interrupts/interrupts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/interrupts/interrupts.cpp -------------------------------------------------------------------------------- /kernel/src/interrupts/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/interrupts/interrupts.h -------------------------------------------------------------------------------- /kernel/src/interrupts/syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/interrupts/syscalls.asm -------------------------------------------------------------------------------- /kernel/src/interrupts/syscalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/interrupts/syscalls.cpp -------------------------------------------------------------------------------- /kernel/src/interrupts/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/interrupts/syscalls.h -------------------------------------------------------------------------------- /kernel/src/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/io.cpp -------------------------------------------------------------------------------- /kernel/src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/io.h -------------------------------------------------------------------------------- /kernel/src/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/kernel.cpp -------------------------------------------------------------------------------- /kernel/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/kernel.h -------------------------------------------------------------------------------- /kernel/src/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/keyboard.cpp -------------------------------------------------------------------------------- /kernel/src/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/keyboard.h -------------------------------------------------------------------------------- /kernel/src/keyboard_scancode_translation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/keyboard_scancode_translation.cpp -------------------------------------------------------------------------------- /kernel/src/keyboard_scancode_translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/keyboard_scancode_translation.h -------------------------------------------------------------------------------- /kernel/src/kstage1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/kstage1.cpp -------------------------------------------------------------------------------- /kernel/src/kstage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/kstage1.h -------------------------------------------------------------------------------- /kernel/src/large_integers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/large_integers.h -------------------------------------------------------------------------------- /kernel/src/link_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/link_definitions.h -------------------------------------------------------------------------------- /kernel/src/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/linked_list.h -------------------------------------------------------------------------------- /kernel/src/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/math.h -------------------------------------------------------------------------------- /kernel/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory.cpp -------------------------------------------------------------------------------- /kernel/src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory.h -------------------------------------------------------------------------------- /kernel/src/memory/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/common.h -------------------------------------------------------------------------------- /kernel/src/memory/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/heap.cpp -------------------------------------------------------------------------------- /kernel/src/memory/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/heap.h -------------------------------------------------------------------------------- /kernel/src/memory/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/paging.h -------------------------------------------------------------------------------- /kernel/src/memory/physical_memory_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/physical_memory_manager.cpp -------------------------------------------------------------------------------- /kernel/src/memory/physical_memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/physical_memory_manager.h -------------------------------------------------------------------------------- /kernel/src/memory/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/region.h -------------------------------------------------------------------------------- /kernel/src/memory/virtual_memory_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/virtual_memory_manager.cpp -------------------------------------------------------------------------------- /kernel/src/memory/virtual_memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/memory/virtual_memory_manager.h -------------------------------------------------------------------------------- /kernel/src/mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/mouse.cpp -------------------------------------------------------------------------------- /kernel/src/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/mouse.h -------------------------------------------------------------------------------- /kernel/src/panic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/panic.cpp -------------------------------------------------------------------------------- /kernel/src/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/panic.h -------------------------------------------------------------------------------- /kernel/src/pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/pci.cpp -------------------------------------------------------------------------------- /kernel/src/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/pci.h -------------------------------------------------------------------------------- /kernel/src/pci_descriptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/pci_descriptors.cpp -------------------------------------------------------------------------------- /kernel/src/pit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/pit.cpp -------------------------------------------------------------------------------- /kernel/src/pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/pit.h -------------------------------------------------------------------------------- /kernel/src/prekernel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/prekernel.asm -------------------------------------------------------------------------------- /kernel/src/pure_virtuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/pure_virtuals.cpp -------------------------------------------------------------------------------- /kernel/src/pure_virtuals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/pure_virtuals.h -------------------------------------------------------------------------------- /kernel/src/random_lcg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/random_lcg.cpp -------------------------------------------------------------------------------- /kernel/src/random_lcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/random_lcg.h -------------------------------------------------------------------------------- /kernel/src/random_lfsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/random_lfsr.cpp -------------------------------------------------------------------------------- /kernel/src/random_lfsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/random_lfsr.h -------------------------------------------------------------------------------- /kernel/src/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/rtc.cpp -------------------------------------------------------------------------------- /kernel/src/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/rtc.h -------------------------------------------------------------------------------- /kernel/src/scheduler.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/scheduler.asm -------------------------------------------------------------------------------- /kernel/src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/scheduler.cpp -------------------------------------------------------------------------------- /kernel/src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/scheduler.h -------------------------------------------------------------------------------- /kernel/src/spinlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/spinlock.cpp -------------------------------------------------------------------------------- /kernel/src/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/spinlock.h -------------------------------------------------------------------------------- /kernel/src/storage/device_drivers/gpt_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/device_drivers/gpt_partition.h -------------------------------------------------------------------------------- /kernel/src/storage/device_drivers/port_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/device_drivers/port_controller.cpp -------------------------------------------------------------------------------- /kernel/src/storage/device_drivers/port_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/device_drivers/port_controller.h -------------------------------------------------------------------------------- /kernel/src/storage/file_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/file_metadata.h -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_driver.h -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/dbgout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/dbgout.h -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/file_allocation_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/file_allocation_table.cpp -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/file_allocation_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/file_allocation_table.h -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/input.cpp -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/input.h -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/pipe.cpp -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/pipe.h -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/socket.cpp -------------------------------------------------------------------------------- /kernel/src/storage/filesystem_drivers/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/filesystem_drivers/socket.h -------------------------------------------------------------------------------- /kernel/src/storage/storage_device_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/storage/storage_device_driver.h -------------------------------------------------------------------------------- /kernel/src/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/system.cpp -------------------------------------------------------------------------------- /kernel/src/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/system.h -------------------------------------------------------------------------------- /kernel/src/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/tests.cpp -------------------------------------------------------------------------------- /kernel/src/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/tests.h -------------------------------------------------------------------------------- /kernel/src/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/time.h -------------------------------------------------------------------------------- /kernel/src/tss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/tss.cpp -------------------------------------------------------------------------------- /kernel/src/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/tss.h -------------------------------------------------------------------------------- /kernel/src/uart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/uart.cpp -------------------------------------------------------------------------------- /kernel/src/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/uart.h -------------------------------------------------------------------------------- /kernel/src/userswitch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/userswitch.asm -------------------------------------------------------------------------------- /kernel/src/utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/utf.cpp -------------------------------------------------------------------------------- /kernel/src/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/utf.h -------------------------------------------------------------------------------- /kernel/src/va_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/va_list.h -------------------------------------------------------------------------------- /kernel/src/vfs_forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/vfs_forward.h -------------------------------------------------------------------------------- /kernel/src/virtual_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/virtual_filesystem.cpp -------------------------------------------------------------------------------- /kernel/src/virtual_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/virtual_filesystem.h -------------------------------------------------------------------------------- /kernel/src/x86_64/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/kernel/src/x86_64/cpu.h -------------------------------------------------------------------------------- /known_bugs.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/known_bugs.org -------------------------------------------------------------------------------- /oldTODO.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/oldTODO.org -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/buildrun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/buildrun.bat -------------------------------------------------------------------------------- /scripts/buildrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/buildrun.sh -------------------------------------------------------------------------------- /scripts/cinclude2dot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/cinclude2dot.sh -------------------------------------------------------------------------------- /scripts/install_mkgpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/install_mkgpt.sh -------------------------------------------------------------------------------- /scripts/mkbootdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkbootdir.sh -------------------------------------------------------------------------------- /scripts/mkfat32efibootimage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkfat32efibootimage.cmake -------------------------------------------------------------------------------- /scripts/mkfat32images.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkfat32images.cmake -------------------------------------------------------------------------------- /scripts/mkfat32lensorosdata.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkfat32lensorosdata.cmake -------------------------------------------------------------------------------- /scripts/mkgpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkgpt.sh -------------------------------------------------------------------------------- /scripts/mkimg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkimg.bat -------------------------------------------------------------------------------- /scripts/mkimg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkimg.ps1 -------------------------------------------------------------------------------- /scripts/mkimg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkimg.sh -------------------------------------------------------------------------------- /scripts/mkiso.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkiso.bat -------------------------------------------------------------------------------- /scripts/mkiso.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkiso.ps1 -------------------------------------------------------------------------------- /scripts/mkiso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/mkiso.sh -------------------------------------------------------------------------------- /scripts/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/run.bat -------------------------------------------------------------------------------- /scripts/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/run.ps1 -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/rundbg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/rundbg.bat -------------------------------------------------------------------------------- /scripts/rundbg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/rundbg.sh -------------------------------------------------------------------------------- /scripts/runhda.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/runhda.bat -------------------------------------------------------------------------------- /scripts/runhda.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/runhda.ps1 -------------------------------------------------------------------------------- /scripts/runhda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/runhda.sh -------------------------------------------------------------------------------- /scripts/runhdadbg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/runhdadbg.bat -------------------------------------------------------------------------------- /scripts/runhdadbg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/runhdadbg.sh -------------------------------------------------------------------------------- /scripts/runiso.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/runiso.bat -------------------------------------------------------------------------------- /scripts/runiso.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/runiso.ps1 -------------------------------------------------------------------------------- /scripts/runiso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/runiso.sh -------------------------------------------------------------------------------- /scripts/startup.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/startup.nsh -------------------------------------------------------------------------------- /scripts/sysroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/scripts/sysroot.sh -------------------------------------------------------------------------------- /std/include/.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-language=C++ 2 | -------------------------------------------------------------------------------- /std/include/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/algorithm -------------------------------------------------------------------------------- /std/include/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/array -------------------------------------------------------------------------------- /std/include/atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/atomic -------------------------------------------------------------------------------- /std/include/bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/bit -------------------------------------------------------------------------------- /std/include/bits/colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/bits/colours.h -------------------------------------------------------------------------------- /std/include/bits/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/bits/decls.h -------------------------------------------------------------------------------- /std/include/bits/terminate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/bits/terminate.h -------------------------------------------------------------------------------- /std/include/cmath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/cmath -------------------------------------------------------------------------------- /std/include/concepts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/concepts -------------------------------------------------------------------------------- /std/include/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/cstring -------------------------------------------------------------------------------- /std/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/ctype.h -------------------------------------------------------------------------------- /std/include/extensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/extensions -------------------------------------------------------------------------------- /std/include/extensions_double_ended_queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/extensions_double_ended_queue -------------------------------------------------------------------------------- /std/include/extensions_ring_buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/extensions_ring_buffer -------------------------------------------------------------------------------- /std/include/extensions_sparse_vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/extensions_sparse_vector -------------------------------------------------------------------------------- /std/include/filesystem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/filesystem -------------------------------------------------------------------------------- /std/include/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/format -------------------------------------------------------------------------------- /std/include/functional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/functional -------------------------------------------------------------------------------- /std/include/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/iterator -------------------------------------------------------------------------------- /std/include/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/locale -------------------------------------------------------------------------------- /std/include/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/memory -------------------------------------------------------------------------------- /std/include/mutex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/mutex -------------------------------------------------------------------------------- /std/include/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/new -------------------------------------------------------------------------------- /std/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/stddef.h -------------------------------------------------------------------------------- /std/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/stdint.h -------------------------------------------------------------------------------- /std/include/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/string -------------------------------------------------------------------------------- /std/include/string_view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/string_view -------------------------------------------------------------------------------- /std/include/type_traits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/type_traits -------------------------------------------------------------------------------- /std/include/unordered_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/unordered_map -------------------------------------------------------------------------------- /std/include/utility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/utility -------------------------------------------------------------------------------- /std/include/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/std/include/vector -------------------------------------------------------------------------------- /structure.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/structure.dot -------------------------------------------------------------------------------- /toolchain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/.gitignore -------------------------------------------------------------------------------- /toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/README.md -------------------------------------------------------------------------------- /toolchain/binutils-2.38-lensor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/binutils-2.38-lensor.patch -------------------------------------------------------------------------------- /toolchain/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/config.cmake -------------------------------------------------------------------------------- /toolchain/gcc-11.2.0-lensor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/gcc-11.2.0-lensor.patch -------------------------------------------------------------------------------- /toolchain/gcc-12.1.0-lensor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/gcc-12.1.0-lensor.patch -------------------------------------------------------------------------------- /toolchain/lensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/lensor.h -------------------------------------------------------------------------------- /toolchain/lensor_gnu_toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/lensor_gnu_toolchain.cmake -------------------------------------------------------------------------------- /toolchain/toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/toolchain.sh -------------------------------------------------------------------------------- /toolchain/win_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/toolchain/win_toolchain.sh -------------------------------------------------------------------------------- /user/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/CMakeLists.txt -------------------------------------------------------------------------------- /user/blazeit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/blazeit/CMakeLists.txt -------------------------------------------------------------------------------- /user/blazeit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/blazeit/main.c -------------------------------------------------------------------------------- /user/cat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/cat/CMakeLists.txt -------------------------------------------------------------------------------- /user/cat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/cat/main.cpp -------------------------------------------------------------------------------- /user/clienttest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/clienttest/CMakeLists.txt -------------------------------------------------------------------------------- /user/clienttest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/clienttest/main.c -------------------------------------------------------------------------------- /user/echo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/echo/CMakeLists.txt -------------------------------------------------------------------------------- /user/echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/echo/main.cpp -------------------------------------------------------------------------------- /user/libc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/CMakeLists.txt -------------------------------------------------------------------------------- /user/libc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/README.md -------------------------------------------------------------------------------- /user/libc/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/abi.cpp -------------------------------------------------------------------------------- /user/libc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/assert.h -------------------------------------------------------------------------------- /user/libc/bits/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/bits/abi.h -------------------------------------------------------------------------------- /user/libc/bits/cdtors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/bits/cdtors.h -------------------------------------------------------------------------------- /user/libc/bits/file_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/bits/file_struct.h -------------------------------------------------------------------------------- /user/libc/bits/io_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/bits/io_defs.h -------------------------------------------------------------------------------- /user/libc/bits/string_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/bits/string_intrinsics.h -------------------------------------------------------------------------------- /user/libc/bits/stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/bits/stub.h -------------------------------------------------------------------------------- /user/libc/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/crt0.s -------------------------------------------------------------------------------- /user/libc/crti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/crti.s -------------------------------------------------------------------------------- /user/libc/crtn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/crtn.s -------------------------------------------------------------------------------- /user/libc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/errno.h -------------------------------------------------------------------------------- /user/libc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/float.h -------------------------------------------------------------------------------- /user/libc/install-headers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/install-headers.cmake -------------------------------------------------------------------------------- /user/libc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/install.sh -------------------------------------------------------------------------------- /user/libc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/limits.h -------------------------------------------------------------------------------- /user/libc/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/stdalign.h -------------------------------------------------------------------------------- /user/libc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/stdarg.h -------------------------------------------------------------------------------- /user/libc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/stdbool.h -------------------------------------------------------------------------------- /user/libc/stdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/stdio.cpp -------------------------------------------------------------------------------- /user/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/stdio.h -------------------------------------------------------------------------------- /user/libc/stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/stdlib.cpp -------------------------------------------------------------------------------- /user/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/stdlib.h -------------------------------------------------------------------------------- /user/libc/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/stdnoreturn.h -------------------------------------------------------------------------------- /user/libc/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/string.cpp -------------------------------------------------------------------------------- /user/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/string.h -------------------------------------------------------------------------------- /user/libc/sys/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/sys/intrin.h -------------------------------------------------------------------------------- /user/libc/sys/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/sys/syscalls.h -------------------------------------------------------------------------------- /user/libc/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/sys/types.h -------------------------------------------------------------------------------- /user/libc/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/template.h -------------------------------------------------------------------------------- /user/libc/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/test/CMakeLists.txt -------------------------------------------------------------------------------- /user/libc/test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/test/test.cc -------------------------------------------------------------------------------- /user/libc/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/CMakeLists.txt -------------------------------------------------------------------------------- /user/libc/tests/add-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/add-test.sh -------------------------------------------------------------------------------- /user/libc/tests/test/string/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/base.cpp -------------------------------------------------------------------------------- /user/libc/tests/test/string/cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/cat.cpp -------------------------------------------------------------------------------- /user/libc/tests/test/string/compare-lex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/compare-lex.cpp -------------------------------------------------------------------------------- /user/libc/tests/test/string/compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/compare.cpp -------------------------------------------------------------------------------- /user/libc/tests/test/string/erase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/erase.cpp -------------------------------------------------------------------------------- /user/libc/tests/test/string/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/misc.cpp -------------------------------------------------------------------------------- /user/libc/tests/test/string/starts-ends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/starts-ends.cpp -------------------------------------------------------------------------------- /user/libc/tests/test/string/substr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/substr.cpp -------------------------------------------------------------------------------- /user/libc/tests/test/string/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/test/string/view.cpp -------------------------------------------------------------------------------- /user/libc/tests/testing.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/tests/testing.hh -------------------------------------------------------------------------------- /user/libc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/time.h -------------------------------------------------------------------------------- /user/libc/unistd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/unistd.cpp -------------------------------------------------------------------------------- /user/libc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libc/unistd.h -------------------------------------------------------------------------------- /user/libm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libm/CMakeLists.txt -------------------------------------------------------------------------------- /user/libm/src/stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libm/src/stub.cpp -------------------------------------------------------------------------------- /user/libstdc++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libstdc++/CMakeLists.txt -------------------------------------------------------------------------------- /user/libstdc++/src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libstdc++/src/filesystem.cpp -------------------------------------------------------------------------------- /user/libstdc++/src/stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/libstdc++/src/stub.cpp -------------------------------------------------------------------------------- /user/ls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/ls/CMakeLists.txt -------------------------------------------------------------------------------- /user/ls/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/ls/main.cpp -------------------------------------------------------------------------------- /user/pwd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/pwd/CMakeLists.txt -------------------------------------------------------------------------------- /user/pwd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/pwd/main.c -------------------------------------------------------------------------------- /user/servertest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/servertest/CMakeLists.txt -------------------------------------------------------------------------------- /user/servertest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/servertest/main.c -------------------------------------------------------------------------------- /user/stdout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/stdout/CMakeLists.txt -------------------------------------------------------------------------------- /user/stdout/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/stdout/framebuffer.c -------------------------------------------------------------------------------- /user/stdout/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/stdout/framebuffer.h -------------------------------------------------------------------------------- /user/stdout/ints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/stdout/ints.h -------------------------------------------------------------------------------- /user/stdout/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/stdout/main.c -------------------------------------------------------------------------------- /user/stdout/psf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/stdout/psf.c -------------------------------------------------------------------------------- /user/stdout/psf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/stdout/psf.h -------------------------------------------------------------------------------- /user/xish/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/xish/CMakeLists.txt -------------------------------------------------------------------------------- /user/xish/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LensPlaysGames/LensorOS/HEAD/user/xish/src/main.cpp --------------------------------------------------------------------------------