├── .github └── workflows │ ├── ci-cd.yml │ └── tagged-release.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── config.sh ├── disk.img ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ ├── docs_source │ ├── drivers │ │ └── ata │ │ │ └── ata_driver.rst │ ├── libc │ │ ├── kassert.rst │ │ ├── kerrno.rst │ │ └── kstring.rst │ └── utils │ │ └── data_structures │ │ └── hashmap │ │ └── hashmap.rst │ └── index.rst ├── generate_grubcfg.sh ├── get_pwd.sh ├── grub.cfg ├── is_multiboot.sh ├── kernel ├── Makefile ├── arch │ └── i686 │ │ ├── acpica │ │ ├── Makefile │ │ ├── acapps.h │ │ ├── acbuffer.h │ │ ├── acclib.h │ │ ├── accommon.h │ │ ├── acconfig.h │ │ ├── acconvert.h │ │ ├── acdebug.h │ │ ├── acdisasm.h │ │ ├── acdispat.h │ │ ├── acevents.h │ │ ├── acexcep.h │ │ ├── acglobal.h │ │ ├── achware.h │ │ ├── acinterp.h │ │ ├── aclocal.h │ │ ├── acmacros.h │ │ ├── acnames.h │ │ ├── acnamesp.h │ │ ├── acobject.h │ │ ├── acopcode.h │ │ ├── acoutput.h │ │ ├── acparser.h │ │ ├── acpi.h │ │ ├── acpiosxf.h │ │ ├── acpixf.h │ │ ├── acpredef.h │ │ ├── acresrc.h │ │ ├── acrestyp.h │ │ ├── acstruct.h │ │ ├── actables.h │ │ ├── actbinfo.h │ │ ├── actbl.h │ │ ├── actbl1.h │ │ ├── actbl2.h │ │ ├── actbl3.h │ │ ├── actypes.h │ │ ├── acutils.h │ │ ├── acuuid.h │ │ ├── amlcode.h │ │ ├── amlresrc.h │ │ ├── dispatcher │ │ │ ├── dsargs.c │ │ │ ├── dscontrol.c │ │ │ ├── dsdebug.c │ │ │ ├── dsfield.c │ │ │ ├── dsinit.c │ │ │ ├── dsmethod.c │ │ │ ├── dsmthdat.c │ │ │ ├── dsobject.c │ │ │ ├── dsopcode.c │ │ │ ├── dspkginit.c │ │ │ ├── dsutils.c │ │ │ ├── dswexec.c │ │ │ ├── dswload.c │ │ │ ├── dswload2.c │ │ │ ├── dswscope.c │ │ │ └── dswstate.c │ │ ├── events │ │ │ ├── evevent.c │ │ │ ├── evglock.c │ │ │ ├── evgpe.c │ │ │ ├── evgpeblk.c │ │ │ ├── evgpeinit.c │ │ │ ├── evgpeutil.c │ │ │ ├── evhandler.c │ │ │ ├── evmisc.c │ │ │ ├── evregion.c │ │ │ ├── evrgnini.c │ │ │ ├── evsci.c │ │ │ ├── evxface.c │ │ │ ├── evxfevnt.c │ │ │ ├── evxfgpe.c │ │ │ └── evxfregn.c │ │ ├── executer │ │ │ ├── exconcat.c │ │ │ ├── exconfig.c │ │ │ ├── exconvrt.c │ │ │ ├── excreate.c │ │ │ ├── exdebug.c │ │ │ ├── exdump.c │ │ │ ├── exfield.c │ │ │ ├── exfldio.c │ │ │ ├── exmisc.c │ │ │ ├── exmutex.c │ │ │ ├── exnames.c │ │ │ ├── exoparg1.c │ │ │ ├── exoparg2.c │ │ │ ├── exoparg3.c │ │ │ ├── exoparg6.c │ │ │ ├── exprep.c │ │ │ ├── exregion.c │ │ │ ├── exresnte.c │ │ │ ├── exresolv.c │ │ │ ├── exresop.c │ │ │ ├── exserial.c │ │ │ ├── exstore.c │ │ │ ├── exstoren.c │ │ │ ├── exstorob.c │ │ │ ├── exsystem.c │ │ │ ├── extrace.c │ │ │ └── exutils.c │ │ ├── hardware │ │ │ ├── hwacpi.c │ │ │ ├── hwesleep.c │ │ │ ├── hwgpe.c │ │ │ ├── hwpci.c │ │ │ ├── hwregs.c │ │ │ ├── hwsleep.c │ │ │ ├── hwtimer.c │ │ │ ├── hwvalid.c │ │ │ ├── hwxface.c │ │ │ └── hwxfsleep.c │ │ ├── namespace │ │ │ ├── nsaccess.c │ │ │ ├── nsalloc.c │ │ │ ├── nsarguments.c │ │ │ ├── nsconvert.c │ │ │ ├── nsdump.c │ │ │ ├── nsdumpdv.c │ │ │ ├── nseval.c │ │ │ ├── nsinit.c │ │ │ ├── nsload.c │ │ │ ├── nsnames.c │ │ │ ├── nsobject.c │ │ │ ├── nsparse.c │ │ │ ├── nspredef.c │ │ │ ├── nsprepkg.c │ │ │ ├── nsrepair.c │ │ │ ├── nsrepair2.c │ │ │ ├── nssearch.c │ │ │ ├── nsutils.c │ │ │ ├── nswalk.c │ │ │ ├── nsxfeval.c │ │ │ ├── nsxfname.c │ │ │ └── nsxfobj.c │ │ ├── parser │ │ │ ├── psargs.c │ │ │ ├── psloop.c │ │ │ ├── psobject.c │ │ │ ├── psopcode.c │ │ │ ├── psopinfo.c │ │ │ ├── psparse.c │ │ │ ├── psscope.c │ │ │ ├── pstree.c │ │ │ ├── psutils.c │ │ │ ├── pswalk.c │ │ │ └── psxface.c │ │ ├── platform │ │ │ ├── accygwin.h │ │ │ ├── acefi.h │ │ │ ├── acefiex.h │ │ │ ├── acenv.h │ │ │ ├── acenvex.h │ │ │ ├── acgcc.h │ │ │ ├── acgccex.h │ │ │ ├── acintel.h │ │ │ ├── acos2.h │ │ │ ├── acqnx.h │ │ │ └── acrocketos.h │ │ ├── resources │ │ │ ├── rsaddr.c │ │ │ ├── rscalc.c │ │ │ ├── rscreate.c │ │ │ ├── rsdumpinfo.c │ │ │ ├── rsinfo.c │ │ │ ├── rsio.c │ │ │ ├── rsirq.c │ │ │ ├── rslist.c │ │ │ ├── rsmemory.c │ │ │ ├── rsmisc.c │ │ │ ├── rsserial.c │ │ │ ├── rsutils.c │ │ │ └── rsxface.c │ │ ├── tables │ │ │ ├── tbdata.c │ │ │ ├── tbfadt.c │ │ │ ├── tbfind.c │ │ │ ├── tbinstal.c │ │ │ ├── tbprint.c │ │ │ ├── tbutils.c │ │ │ ├── tbxface.c │ │ │ ├── tbxfload.c │ │ │ └── tbxfroot.c │ │ └── utilities │ │ │ ├── utaddress.c │ │ │ ├── utalloc.c │ │ │ ├── utascii.c │ │ │ ├── utbuffer.c │ │ │ ├── utcache.c │ │ │ ├── utclib.c │ │ │ ├── utcopy.c │ │ │ ├── utdebug.c │ │ │ ├── utdecode.c │ │ │ ├── utdelete.c │ │ │ ├── uterror.c │ │ │ ├── uteval.c │ │ │ ├── utexcep.c │ │ │ ├── utglobal.c │ │ │ ├── uthex.c │ │ │ ├── utids.c │ │ │ ├── utinit.c │ │ │ ├── utlock.c │ │ │ ├── utmath.c │ │ │ ├── utmisc.c │ │ │ ├── utmutex.c │ │ │ ├── utnonansi.c │ │ │ ├── utobject.c │ │ │ ├── utosi.c │ │ │ ├── utownerid.c │ │ │ ├── utpredef.c │ │ │ ├── utprint.c │ │ │ ├── utresdecode.c │ │ │ ├── utresrc.c │ │ │ ├── utstate.c │ │ │ ├── utstring.c │ │ │ ├── utstrsuppt.c │ │ │ ├── utstrtoul64.c │ │ │ ├── uttrack.c │ │ │ ├── utuuid.c │ │ │ ├── utxface.c │ │ │ ├── utxferror.c │ │ │ ├── utxfinit.c │ │ │ └── utxfmutex.c │ │ ├── boot │ │ ├── boot_PT.s │ │ ├── kernel.c │ │ ├── multiboot.h │ │ ├── multiboot_header.s │ │ └── upperhalf_boot.s │ │ ├── drivers │ │ ├── hdd │ │ │ └── ahci │ │ │ │ ├── ahci.c │ │ │ │ └── ahci.h │ │ ├── keyboard │ │ │ ├── default_keyboard_logic.c │ │ │ ├── default_keyboard_logic.h │ │ │ ├── keyboard_driver.c │ │ │ └── keyboard_driver.h │ │ ├── pci │ │ │ ├── legacy_pci │ │ │ │ ├── pci_bus.c │ │ │ │ └── pci_bus.h │ │ │ └── pcie │ │ │ │ ├── pcie_bus.c │ │ │ │ └── pcie_bus.h │ │ ├── pit │ │ │ ├── pit.c │ │ │ └── pit.h │ │ ├── port_mapped_io │ │ │ ├── hardware_communication.s │ │ │ ├── hardware_io.c │ │ │ └── hardware_io.h │ │ ├── serial │ │ │ ├── serial_driver.c │ │ │ └── serial_driver.h │ │ └── vga_driver │ │ │ ├── default_vga_driver.c │ │ │ ├── default_vga_driver.h │ │ │ ├── vga_driver.c │ │ │ └── vga_driver.h │ │ ├── interrupts │ │ ├── enable_interrupts.s │ │ ├── interrupt_handler.s │ │ ├── interrupt_types.h │ │ ├── interrupts.c │ │ └── interrupts.h │ │ ├── linker.ld │ │ ├── make.config │ │ ├── osi_shim │ │ ├── acpi_init.c │ │ ├── acpi_init.h │ │ └── osi.c │ │ └── usermode │ │ ├── gdt.c │ │ ├── gdt.h │ │ ├── gdt_entries.s │ │ ├── system_call_handler.s │ │ └── system_call_implementations.h ├── include │ └── kernel │ │ └── utils │ │ └── communication_and_events │ │ ├── message_queue.h │ │ └── observer.h ├── kernel │ ├── ATA │ │ ├── ata_driver.c │ │ └── ata_driver.h │ ├── mem │ │ ├── higher_half_utils.h │ │ ├── initialize_kernel_memory.c │ │ ├── initialize_kernel_memory.h │ │ ├── mem_constants.h │ │ ├── paging │ │ │ ├── enable_paging.s │ │ │ ├── paging.c │ │ │ └── paging.h │ │ ├── phys │ │ │ ├── global_phys_allocator.c │ │ │ └── global_phys_allocator.h │ │ └── virt │ │ │ ├── heap_virt_mem_allocator.c │ │ │ ├── heap_virt_mem_allocator.h │ │ │ ├── kernel_virt_allocator.c │ │ │ ├── kernel_virt_allocator.h │ │ │ ├── osi_virt_mem_allocator.c │ │ │ └── osi_virt_mem_allocator.h │ ├── scheduler │ │ ├── process.h │ │ ├── scheduler.c │ │ ├── scheduler.h │ │ ├── task_switch.s │ │ ├── timer.c │ │ └── timer.h │ ├── subsystems │ │ └── terminal │ │ │ ├── default_terminal_functions.c │ │ │ ├── default_terminal_functions.h │ │ │ ├── default_terminal_system.c │ │ │ ├── default_terminal_system.h │ │ │ ├── keyboard_callbacks.c │ │ │ ├── keyboard_callbacks.h │ │ │ ├── terminal_driver.c │ │ │ └── terminal_driver.h │ ├── synchronization_primitives │ │ ├── int_lock.c │ │ ├── int_lock.h │ │ ├── spinlock.c │ │ └── spinlock.h │ ├── tar_fs │ │ ├── tar.c │ │ └── tar.h │ └── utils │ │ ├── algorithms │ │ ├── comparison.h │ │ ├── sort │ │ │ ├── quicksort.c │ │ │ └── quicksort.h │ │ ├── swap.c │ │ └── swap.h │ │ ├── allocators │ │ ├── bitmap │ │ │ ├── bitmap_allocator.c │ │ │ └── bitmap_allocator.h │ │ └── buddy │ │ │ ├── buddy_memory_allocator.c │ │ │ └── buddy_memory_allocator.h │ │ ├── bitset │ │ ├── bitset.c │ │ └── bitset.h │ │ ├── data_structures │ │ ├── hashmap │ │ │ ├── default_hashmap_functions.c │ │ │ ├── default_hashmap_functions.h │ │ │ └── hashmap.h │ │ ├── string │ │ │ ├── string.c │ │ │ └── string.h │ │ └── vector │ │ │ ├── vector.c │ │ │ └── vector.h │ │ └── wrappers │ │ ├── physical_pointer.c │ │ └── physical_pointer.h └── libk │ ├── kassert.h │ ├── kctype.c │ ├── kctype.h │ ├── kerrno.c │ ├── kerrno.h │ ├── kmath.c │ ├── kmath.h │ ├── kstdio.c │ ├── kstdio.h │ ├── kstdlib.c │ ├── kstdlib.h │ ├── kstring.c │ ├── kstring.h │ ├── optional.h │ └── sys │ └── kstdlib_constants.h ├── logo ├── Rocket.svg ├── rocket_min.svg ├── social-preview-wip.svg ├── social-preview.svg ├── webicon.svg └── webicon_min.svg ├── make.config ├── make_ramdisk.py ├── ramdisk_files ├── bar.txt ├── baz.txt ├── foo.txt ├── port_io.c ├── port_io.h ├── serial.c ├── serial.h ├── strlen.c ├── strlen.h ├── test_program └── test_program.c ├── test ├── libc │ ├── Test-kstdlib.c │ ├── Test-kstring.c │ ├── Test-kstring2.c │ ├── Test-kstring3.c │ └── Test-kstring4.c ├── test_kernel_early.h ├── unity_config.h └── utils │ └── data_structures │ └── hashmap │ └── Test-hashmap.c ├── toolchain.sh └── userspace └── Makefile /.github/workflows/ci-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/.github/workflows/ci-cd.yml -------------------------------------------------------------------------------- /.github/workflows/tagged-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/.github/workflows/tagged-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/README.md -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/config.sh -------------------------------------------------------------------------------- /disk.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/disk.img -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/docs_source/drivers/ata/ata_driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/source/docs_source/drivers/ata/ata_driver.rst -------------------------------------------------------------------------------- /docs/source/docs_source/libc/kassert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/source/docs_source/libc/kassert.rst -------------------------------------------------------------------------------- /docs/source/docs_source/libc/kerrno.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/source/docs_source/libc/kerrno.rst -------------------------------------------------------------------------------- /docs/source/docs_source/libc/kstring.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/source/docs_source/libc/kstring.rst -------------------------------------------------------------------------------- /docs/source/docs_source/utils/data_structures/hashmap/hashmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/source/docs_source/utils/data_structures/hashmap/hashmap.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /generate_grubcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/generate_grubcfg.sh -------------------------------------------------------------------------------- /get_pwd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "$(dirname $(realpath $0))" 4 | 5 | -------------------------------------------------------------------------------- /grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/grub.cfg -------------------------------------------------------------------------------- /is_multiboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/is_multiboot.sh -------------------------------------------------------------------------------- /kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/Makefile -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/Makefile -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acapps.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acbuffer.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acclib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acclib.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/accommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/accommon.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acconfig.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acconvert.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acdebug.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acdisasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acdisasm.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acdispat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acdispat.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acevents.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acexcep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acexcep.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acglobal.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/achware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/achware.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acinterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acinterp.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/aclocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/aclocal.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acmacros.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acnames.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acnamesp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acnamesp.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acobject.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acopcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acopcode.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acoutput.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acparser.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acpi.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acpiosxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acpiosxf.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acpixf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acpixf.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acpredef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acpredef.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acresrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acresrc.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acrestyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acrestyp.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acstruct.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/actables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/actables.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/actbinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/actbinfo.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/actbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/actbl.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/actbl1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/actbl1.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/actbl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/actbl2.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/actbl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/actbl3.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/actypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/actypes.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acutils.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/acuuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/acuuid.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/amlcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/amlcode.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/amlresrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/amlresrc.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsargs.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dscontrol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dscontrol.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsdebug.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsfield.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsinit.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsmethod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsmethod.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsmthdat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsmthdat.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsobject.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsopcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsopcode.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dspkginit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dspkginit.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dsutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dsutils.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dswexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dswexec.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dswload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dswload.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dswload2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dswload2.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dswscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dswscope.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/dispatcher/dswstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/dispatcher/dswstate.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evevent.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evglock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evglock.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evgpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evgpe.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evgpeblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evgpeblk.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evgpeinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evgpeinit.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evgpeutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evgpeutil.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evhandler.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evmisc.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evregion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evregion.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evrgnini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evrgnini.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evsci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evsci.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evxface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evxface.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evxfevnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evxfevnt.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evxfgpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evxfgpe.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/events/evxfregn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/events/evxfregn.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exconcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exconcat.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exconfig.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exconvrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exconvrt.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/excreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/excreate.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exdebug.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exdump.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exfield.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exfldio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exfldio.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exmisc.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exmutex.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exnames.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exoparg1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exoparg1.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exoparg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exoparg2.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exoparg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exoparg3.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exoparg6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exoparg6.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exprep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exprep.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exregion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exregion.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exresnte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exresnte.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exresolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exresolv.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exresop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exresop.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exserial.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exstore.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exstoren.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exstoren.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exstorob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exstorob.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exsystem.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/extrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/extrace.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/executer/exutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/executer/exutils.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwacpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwacpi.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwesleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwesleep.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwgpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwgpe.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwpci.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwregs.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwsleep.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwtimer.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwvalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwvalid.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwxface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwxface.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/hardware/hwxfsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/hardware/hwxfsleep.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsaccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsaccess.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsalloc.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsarguments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsarguments.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsconvert.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsdump.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsdumpdv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsdumpdv.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nseval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nseval.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsinit.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsload.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsnames.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsobject.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsparse.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nspredef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nspredef.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsprepkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsprepkg.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsrepair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsrepair.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsrepair2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsrepair2.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nssearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nssearch.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsutils.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nswalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nswalk.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsxfeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsxfeval.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsxfname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsxfname.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/namespace/nsxfobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/namespace/nsxfobj.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psargs.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psloop.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psobject.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psopcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psopcode.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psopinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psopinfo.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psparse.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psscope.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/pstree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/pstree.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psutils.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/pswalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/pswalk.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/parser/psxface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/parser/psxface.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/accygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/accygwin.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acefi.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acefiex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acefiex.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acenv.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acenvex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acenvex.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acgcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acgcc.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acgccex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acgccex.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acintel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acintel.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acos2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acos2.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acqnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acqnx.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/platform/acrocketos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/platform/acrocketos.h -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsaddr.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rscalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rscalc.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rscreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rscreate.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsdumpinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsdumpinfo.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsinfo.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsio.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsirq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsirq.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rslist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rslist.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsmemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsmemory.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsmisc.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsserial.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsutils.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/resources/rsxface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/resources/rsxface.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbdata.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbfadt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbfadt.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbfind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbfind.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbinstal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbinstal.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbprint.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbutils.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbxface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbxface.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbxfload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbxfload.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/tables/tbxfroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/tables/tbxfroot.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utaddress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utaddress.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utalloc.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utascii.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utbuffer.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utcache.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utclib.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utcopy.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utdebug.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utdecode.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utdelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utdelete.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/uterror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/uterror.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/uteval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/uteval.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utexcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utexcep.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utglobal.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/uthex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/uthex.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utids.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utinit.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utlock.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utmath.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utmisc.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utmutex.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utnonansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utnonansi.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utobject.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utosi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utosi.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utownerid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utownerid.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utpredef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utpredef.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utprint.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utresdecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utresdecode.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utresrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utresrc.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utstate.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utstring.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utstrsuppt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utstrsuppt.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utstrtoul64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utstrtoul64.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/uttrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/uttrack.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utuuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utuuid.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utxface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utxface.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utxferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utxferror.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utxfinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utxfinit.c -------------------------------------------------------------------------------- /kernel/arch/i686/acpica/utilities/utxfmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/acpica/utilities/utxfmutex.c -------------------------------------------------------------------------------- /kernel/arch/i686/boot/boot_PT.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/boot/boot_PT.s -------------------------------------------------------------------------------- /kernel/arch/i686/boot/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/boot/kernel.c -------------------------------------------------------------------------------- /kernel/arch/i686/boot/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/boot/multiboot.h -------------------------------------------------------------------------------- /kernel/arch/i686/boot/multiboot_header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/boot/multiboot_header.s -------------------------------------------------------------------------------- /kernel/arch/i686/boot/upperhalf_boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/boot/upperhalf_boot.s -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/hdd/ahci/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/hdd/ahci/ahci.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/hdd/ahci/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/hdd/ahci/ahci.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/keyboard/default_keyboard_logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/keyboard/default_keyboard_logic.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/keyboard/default_keyboard_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/keyboard/default_keyboard_logic.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/keyboard/keyboard_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/keyboard/keyboard_driver.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/keyboard/keyboard_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/keyboard/keyboard_driver.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/pci/legacy_pci/pci_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/pci/legacy_pci/pci_bus.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/pci/legacy_pci/pci_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/pci/legacy_pci/pci_bus.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/pci/pcie/pcie_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/pci/pcie/pcie_bus.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/pci/pcie/pcie_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/pci/pcie/pcie_bus.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/pit/pit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/pit/pit.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/pit/pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/pit/pit.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/port_mapped_io/hardware_communication.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/port_mapped_io/hardware_communication.s -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/port_mapped_io/hardware_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/port_mapped_io/hardware_io.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/port_mapped_io/hardware_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/port_mapped_io/hardware_io.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/serial/serial_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/serial/serial_driver.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/serial/serial_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/serial/serial_driver.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/vga_driver/default_vga_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/vga_driver/default_vga_driver.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/vga_driver/default_vga_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/vga_driver/default_vga_driver.h -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/vga_driver/vga_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/vga_driver/vga_driver.c -------------------------------------------------------------------------------- /kernel/arch/i686/drivers/vga_driver/vga_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/drivers/vga_driver/vga_driver.h -------------------------------------------------------------------------------- /kernel/arch/i686/interrupts/enable_interrupts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/interrupts/enable_interrupts.s -------------------------------------------------------------------------------- /kernel/arch/i686/interrupts/interrupt_handler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/interrupts/interrupt_handler.s -------------------------------------------------------------------------------- /kernel/arch/i686/interrupts/interrupt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/interrupts/interrupt_types.h -------------------------------------------------------------------------------- /kernel/arch/i686/interrupts/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/interrupts/interrupts.c -------------------------------------------------------------------------------- /kernel/arch/i686/interrupts/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/interrupts/interrupts.h -------------------------------------------------------------------------------- /kernel/arch/i686/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/linker.ld -------------------------------------------------------------------------------- /kernel/arch/i686/make.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/make.config -------------------------------------------------------------------------------- /kernel/arch/i686/osi_shim/acpi_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/osi_shim/acpi_init.c -------------------------------------------------------------------------------- /kernel/arch/i686/osi_shim/acpi_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/osi_shim/acpi_init.h -------------------------------------------------------------------------------- /kernel/arch/i686/osi_shim/osi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/osi_shim/osi.c -------------------------------------------------------------------------------- /kernel/arch/i686/usermode/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/usermode/gdt.c -------------------------------------------------------------------------------- /kernel/arch/i686/usermode/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/usermode/gdt.h -------------------------------------------------------------------------------- /kernel/arch/i686/usermode/gdt_entries.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/usermode/gdt_entries.s -------------------------------------------------------------------------------- /kernel/arch/i686/usermode/system_call_handler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/usermode/system_call_handler.s -------------------------------------------------------------------------------- /kernel/arch/i686/usermode/system_call_implementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/arch/i686/usermode/system_call_implementations.h -------------------------------------------------------------------------------- /kernel/include/kernel/utils/communication_and_events/message_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/include/kernel/utils/communication_and_events/message_queue.h -------------------------------------------------------------------------------- /kernel/include/kernel/utils/communication_and_events/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/include/kernel/utils/communication_and_events/observer.h -------------------------------------------------------------------------------- /kernel/kernel/ATA/ata_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/ATA/ata_driver.c -------------------------------------------------------------------------------- /kernel/kernel/ATA/ata_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/ATA/ata_driver.h -------------------------------------------------------------------------------- /kernel/kernel/mem/higher_half_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/higher_half_utils.h -------------------------------------------------------------------------------- /kernel/kernel/mem/initialize_kernel_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/initialize_kernel_memory.c -------------------------------------------------------------------------------- /kernel/kernel/mem/initialize_kernel_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/initialize_kernel_memory.h -------------------------------------------------------------------------------- /kernel/kernel/mem/mem_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/mem_constants.h -------------------------------------------------------------------------------- /kernel/kernel/mem/paging/enable_paging.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/paging/enable_paging.s -------------------------------------------------------------------------------- /kernel/kernel/mem/paging/paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/paging/paging.c -------------------------------------------------------------------------------- /kernel/kernel/mem/paging/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/paging/paging.h -------------------------------------------------------------------------------- /kernel/kernel/mem/phys/global_phys_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/phys/global_phys_allocator.c -------------------------------------------------------------------------------- /kernel/kernel/mem/phys/global_phys_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/phys/global_phys_allocator.h -------------------------------------------------------------------------------- /kernel/kernel/mem/virt/heap_virt_mem_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/virt/heap_virt_mem_allocator.c -------------------------------------------------------------------------------- /kernel/kernel/mem/virt/heap_virt_mem_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/virt/heap_virt_mem_allocator.h -------------------------------------------------------------------------------- /kernel/kernel/mem/virt/kernel_virt_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/virt/kernel_virt_allocator.c -------------------------------------------------------------------------------- /kernel/kernel/mem/virt/kernel_virt_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/virt/kernel_virt_allocator.h -------------------------------------------------------------------------------- /kernel/kernel/mem/virt/osi_virt_mem_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/virt/osi_virt_mem_allocator.c -------------------------------------------------------------------------------- /kernel/kernel/mem/virt/osi_virt_mem_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/mem/virt/osi_virt_mem_allocator.h -------------------------------------------------------------------------------- /kernel/kernel/scheduler/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/scheduler/process.h -------------------------------------------------------------------------------- /kernel/kernel/scheduler/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/scheduler/scheduler.c -------------------------------------------------------------------------------- /kernel/kernel/scheduler/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/scheduler/scheduler.h -------------------------------------------------------------------------------- /kernel/kernel/scheduler/task_switch.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/scheduler/task_switch.s -------------------------------------------------------------------------------- /kernel/kernel/scheduler/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/scheduler/timer.c -------------------------------------------------------------------------------- /kernel/kernel/scheduler/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/scheduler/timer.h -------------------------------------------------------------------------------- /kernel/kernel/subsystems/terminal/default_terminal_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/subsystems/terminal/default_terminal_functions.c -------------------------------------------------------------------------------- /kernel/kernel/subsystems/terminal/default_terminal_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/subsystems/terminal/default_terminal_functions.h -------------------------------------------------------------------------------- /kernel/kernel/subsystems/terminal/default_terminal_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/subsystems/terminal/default_terminal_system.c -------------------------------------------------------------------------------- /kernel/kernel/subsystems/terminal/default_terminal_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/subsystems/terminal/default_terminal_system.h -------------------------------------------------------------------------------- /kernel/kernel/subsystems/terminal/keyboard_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/subsystems/terminal/keyboard_callbacks.c -------------------------------------------------------------------------------- /kernel/kernel/subsystems/terminal/keyboard_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/subsystems/terminal/keyboard_callbacks.h -------------------------------------------------------------------------------- /kernel/kernel/subsystems/terminal/terminal_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/subsystems/terminal/terminal_driver.c -------------------------------------------------------------------------------- /kernel/kernel/subsystems/terminal/terminal_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/subsystems/terminal/terminal_driver.h -------------------------------------------------------------------------------- /kernel/kernel/synchronization_primitives/int_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/synchronization_primitives/int_lock.c -------------------------------------------------------------------------------- /kernel/kernel/synchronization_primitives/int_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/synchronization_primitives/int_lock.h -------------------------------------------------------------------------------- /kernel/kernel/synchronization_primitives/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/synchronization_primitives/spinlock.c -------------------------------------------------------------------------------- /kernel/kernel/synchronization_primitives/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/synchronization_primitives/spinlock.h -------------------------------------------------------------------------------- /kernel/kernel/tar_fs/tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/tar_fs/tar.c -------------------------------------------------------------------------------- /kernel/kernel/tar_fs/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/tar_fs/tar.h -------------------------------------------------------------------------------- /kernel/kernel/utils/algorithms/comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/algorithms/comparison.h -------------------------------------------------------------------------------- /kernel/kernel/utils/algorithms/sort/quicksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/algorithms/sort/quicksort.c -------------------------------------------------------------------------------- /kernel/kernel/utils/algorithms/sort/quicksort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/algorithms/sort/quicksort.h -------------------------------------------------------------------------------- /kernel/kernel/utils/algorithms/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/algorithms/swap.c -------------------------------------------------------------------------------- /kernel/kernel/utils/algorithms/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/algorithms/swap.h -------------------------------------------------------------------------------- /kernel/kernel/utils/allocators/bitmap/bitmap_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/allocators/bitmap/bitmap_allocator.c -------------------------------------------------------------------------------- /kernel/kernel/utils/allocators/bitmap/bitmap_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/allocators/bitmap/bitmap_allocator.h -------------------------------------------------------------------------------- /kernel/kernel/utils/allocators/buddy/buddy_memory_allocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/allocators/buddy/buddy_memory_allocator.c -------------------------------------------------------------------------------- /kernel/kernel/utils/allocators/buddy/buddy_memory_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/allocators/buddy/buddy_memory_allocator.h -------------------------------------------------------------------------------- /kernel/kernel/utils/bitset/bitset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/bitset/bitset.c -------------------------------------------------------------------------------- /kernel/kernel/utils/bitset/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/bitset/bitset.h -------------------------------------------------------------------------------- /kernel/kernel/utils/data_structures/hashmap/default_hashmap_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/data_structures/hashmap/default_hashmap_functions.c -------------------------------------------------------------------------------- /kernel/kernel/utils/data_structures/hashmap/default_hashmap_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/data_structures/hashmap/default_hashmap_functions.h -------------------------------------------------------------------------------- /kernel/kernel/utils/data_structures/hashmap/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/data_structures/hashmap/hashmap.h -------------------------------------------------------------------------------- /kernel/kernel/utils/data_structures/string/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/data_structures/string/string.c -------------------------------------------------------------------------------- /kernel/kernel/utils/data_structures/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/data_structures/string/string.h -------------------------------------------------------------------------------- /kernel/kernel/utils/data_structures/vector/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/data_structures/vector/vector.c -------------------------------------------------------------------------------- /kernel/kernel/utils/data_structures/vector/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/data_structures/vector/vector.h -------------------------------------------------------------------------------- /kernel/kernel/utils/wrappers/physical_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/wrappers/physical_pointer.c -------------------------------------------------------------------------------- /kernel/kernel/utils/wrappers/physical_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/kernel/utils/wrappers/physical_pointer.h -------------------------------------------------------------------------------- /kernel/libk/kassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kassert.h -------------------------------------------------------------------------------- /kernel/libk/kctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kctype.c -------------------------------------------------------------------------------- /kernel/libk/kctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kctype.h -------------------------------------------------------------------------------- /kernel/libk/kerrno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kerrno.c -------------------------------------------------------------------------------- /kernel/libk/kerrno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kerrno.h -------------------------------------------------------------------------------- /kernel/libk/kmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kmath.c -------------------------------------------------------------------------------- /kernel/libk/kmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kmath.h -------------------------------------------------------------------------------- /kernel/libk/kstdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kstdio.c -------------------------------------------------------------------------------- /kernel/libk/kstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kstdio.h -------------------------------------------------------------------------------- /kernel/libk/kstdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kstdlib.c -------------------------------------------------------------------------------- /kernel/libk/kstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kstdlib.h -------------------------------------------------------------------------------- /kernel/libk/kstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kstring.c -------------------------------------------------------------------------------- /kernel/libk/kstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/kstring.h -------------------------------------------------------------------------------- /kernel/libk/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/optional.h -------------------------------------------------------------------------------- /kernel/libk/sys/kstdlib_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/kernel/libk/sys/kstdlib_constants.h -------------------------------------------------------------------------------- /logo/Rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/logo/Rocket.svg -------------------------------------------------------------------------------- /logo/rocket_min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/logo/rocket_min.svg -------------------------------------------------------------------------------- /logo/social-preview-wip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/logo/social-preview-wip.svg -------------------------------------------------------------------------------- /logo/social-preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/logo/social-preview.svg -------------------------------------------------------------------------------- /logo/webicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/logo/webicon.svg -------------------------------------------------------------------------------- /logo/webicon_min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/logo/webicon_min.svg -------------------------------------------------------------------------------- /make.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/make.config -------------------------------------------------------------------------------- /make_ramdisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/make_ramdisk.py -------------------------------------------------------------------------------- /ramdisk_files/bar.txt: -------------------------------------------------------------------------------- 1 | Bar text! 2 | Nice -------------------------------------------------------------------------------- /ramdisk_files/baz.txt: -------------------------------------------------------------------------------- 1 | Baz -------------------------------------------------------------------------------- /ramdisk_files/foo.txt: -------------------------------------------------------------------------------- 1 | This is some foo text 2 | Coolio 3 | -------------------------------------------------------------------------------- /ramdisk_files/port_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/ramdisk_files/port_io.c -------------------------------------------------------------------------------- /ramdisk_files/port_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/ramdisk_files/port_io.h -------------------------------------------------------------------------------- /ramdisk_files/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/ramdisk_files/serial.c -------------------------------------------------------------------------------- /ramdisk_files/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/ramdisk_files/serial.h -------------------------------------------------------------------------------- /ramdisk_files/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/ramdisk_files/strlen.c -------------------------------------------------------------------------------- /ramdisk_files/strlen.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | 6 | size_t kstrlen(const char* str); 7 | -------------------------------------------------------------------------------- /ramdisk_files/test_program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/ramdisk_files/test_program -------------------------------------------------------------------------------- /ramdisk_files/test_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/ramdisk_files/test_program.c -------------------------------------------------------------------------------- /test/libc/Test-kstdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/test/libc/Test-kstdlib.c -------------------------------------------------------------------------------- /test/libc/Test-kstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/test/libc/Test-kstring.c -------------------------------------------------------------------------------- /test/libc/Test-kstring2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/test/libc/Test-kstring2.c -------------------------------------------------------------------------------- /test/libc/Test-kstring3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/test/libc/Test-kstring3.c -------------------------------------------------------------------------------- /test/libc/Test-kstring4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/test/libc/Test-kstring4.c -------------------------------------------------------------------------------- /test/test_kernel_early.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/test/test_kernel_early.h -------------------------------------------------------------------------------- /test/unity_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/test/unity_config.h -------------------------------------------------------------------------------- /test/utils/data_structures/hashmap/Test-hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/test/utils/data_structures/hashmap/Test-hashmap.c -------------------------------------------------------------------------------- /toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/toolchain.sh -------------------------------------------------------------------------------- /userspace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OperatingSystemRocket/RocketOS/HEAD/userspace/Makefile --------------------------------------------------------------------------------