├── .gitignore ├── .gitmodules ├── LICENSE.md ├── Makefile ├── README.md ├── bochs ├── default.h ├── kernel ├── apic.c ├── apic.h ├── config.h ├── data.c ├── driver │ ├── mtrr.c │ ├── mtrr.h │ ├── pci.c │ ├── pci.h │ ├── port.c │ ├── port.h │ ├── rtc.asm │ ├── rtc.c │ ├── rtc.h │ ├── serial.c │ ├── serial.h │ ├── vmware.c │ └── vmware.h ├── exec.c ├── exec.h ├── gdt.h ├── idt.asm ├── idt.c ├── idt.h ├── init.c ├── init │ ├── acpi.c │ ├── acpi.h │ ├── ap.c │ ├── ap.h │ ├── apic.c │ ├── apic.h │ ├── env.c │ ├── exec.c │ ├── gdt.asm │ ├── gdt.c │ ├── idt.c │ ├── ipc.c │ ├── library.c │ ├── memory.c │ ├── module.c │ ├── mtrr.c │ ├── mtrr.h │ ├── page.c │ ├── smp.c │ ├── storage.c │ ├── task.c │ ├── terminal.c │ └── vfs.c ├── io_apic.c ├── io_apic.h ├── ipc.h ├── library.c ├── library.h ├── log.c ├── memory.c ├── memory.h ├── module.c ├── page.c ├── page.h ├── storage.c ├── storage.h ├── syscall.asm ├── syscall.c ├── syscall.h ├── task.asm ├── task.c ├── task.h ├── terminal.c ├── terminal.h ├── time.c ├── time.h ├── tss.h ├── vfs.c └── vfs.h ├── library ├── asm.c ├── asm │ ├── config.h │ ├── data.c │ ├── displacement.c │ ├── immediate.c │ ├── init.c │ ├── memory.c │ ├── modrm.c │ ├── name.c │ └── register.c ├── color.c ├── color.h ├── elf.c ├── elf.h ├── float.c ├── float.h ├── font.c ├── font.h ├── font │ ├── config.h │ └── data.c ├── image.c ├── image.h ├── input.c ├── input.h ├── integer.c ├── integer.h ├── json.c ├── json.h ├── kuro.c ├── kuro.h ├── macro.h ├── math.c ├── math.h ├── rgl.c ├── rgl.h ├── std.c ├── std.h ├── std │ └── syscall.c ├── string.c ├── string.h ├── type.c ├── type.h ├── ui.c ├── ui.h ├── vfs.h ├── window.c └── window.h ├── make ├── module ├── idle.c ├── ps2.asm ├── ps2.c ├── ps2 │ ├── config.h │ └── data.c ├── shredder.c └── shredder │ └── data.c ├── qemu ├── refactoring ├── kernel │ ├── config.h │ ├── data.c │ ├── driver │ │ ├── pci.c │ │ ├── pci.h │ │ ├── port.c │ │ ├── port.h │ │ ├── rtc.asm │ │ ├── rtc.c │ │ ├── rtc.h │ │ ├── serial.c │ │ └── serial.h │ ├── exec.c │ ├── exec.h │ ├── gdt.h │ ├── idt.asm │ ├── idt.c │ ├── idt.h │ ├── init.c │ ├── init │ │ ├── acpi.c │ │ ├── acpi.h │ │ ├── ap.c │ │ ├── ap.h │ │ ├── clean.c │ │ ├── cmd.c │ │ ├── environment.c │ │ ├── gdt.asm │ │ ├── gdt.c │ │ ├── idt.c │ │ ├── ipc.c │ │ ├── lapic.c │ │ ├── lapic.h │ │ ├── library.c │ │ ├── limine.c │ │ ├── memory.c │ │ ├── module.c │ │ ├── network.c │ │ ├── page.c │ │ ├── smp.c │ │ ├── storage.c │ │ ├── stream.c │ │ ├── task.c │ │ └── vfs.c │ ├── io_apic.c │ ├── io_apic.h │ ├── ipc.h │ ├── lapic.c │ ├── lapic.h │ ├── library.c │ ├── library.h │ ├── log.c │ ├── log.h │ ├── memory.c │ ├── memory.h │ ├── module.c │ ├── module.h │ ├── network.c │ ├── network.h │ ├── network │ │ ├── arp.c │ │ ├── data.c │ │ ├── ethernet.c │ │ ├── icmp.c │ │ ├── ip.c │ │ ├── socket.c │ │ ├── tcp.c │ │ └── udp.c │ ├── page.c │ ├── page.h │ ├── qfs.c │ ├── qfs.h │ ├── rtc.asm │ ├── rtc.c │ ├── storage.c │ ├── storage.h │ ├── stream.c │ ├── stream.h │ ├── syscall.asm │ ├── syscall.c │ ├── syscall.h │ ├── task.asm │ ├── task.c │ ├── task.h │ ├── time.c │ ├── time.h │ ├── tss.h │ ├── vfs.c │ └── vfs.h ├── library │ ├── float.c │ ├── float.h │ ├── interface.c │ ├── interface.h │ ├── json.c │ ├── json.h │ ├── math.c │ ├── math.h │ ├── network.c │ ├── network.h │ ├── path.c │ ├── path.h │ ├── random.c │ ├── random.h │ ├── rgl.c │ ├── rgl.h │ ├── terminal.c │ ├── terminal.h │ ├── type.c │ └── type.h ├── module │ ├── e1000.asm │ ├── e1000.c │ ├── e1000 │ │ ├── config.h │ │ └── data.c │ ├── es1370.c │ ├── es1370 │ │ ├── config.h │ │ └── data.c │ ├── ps2.asm │ ├── ps2.c │ ├── ps2 │ │ ├── config.h │ │ └── data.c │ ├── sb16.c │ ├── sb16 │ │ ├── config.h │ │ └── data.c │ ├── shredder.c │ ├── shredder │ │ └── data.c │ ├── usb.c │ ├── usb │ │ ├── config.h │ │ ├── data.c │ │ ├── ehci.c │ │ ├── ehci.h │ │ ├── ohci.c │ │ ├── ohci.h │ │ ├── uhci.c │ │ ├── uhci.h │ │ ├── xhci.c │ │ └── xhci.h │ ├── virtio.asm │ ├── virtio.c │ └── virtio │ │ ├── block.c │ │ ├── block │ │ ├── config.h │ │ └── data.c │ │ ├── config.h │ │ ├── data.c │ │ ├── network.c │ │ └── network │ │ ├── config.h │ │ └── data.c └── software │ ├── 3d copy.c │ ├── 3d copy │ ├── config.h │ ├── data.c │ ├── init.c │ ├── interface.json │ └── object.c │ ├── 3d.c │ ├── 3d │ ├── config.h │ ├── data.c │ ├── init.c │ ├── interface.json │ └── object.c │ ├── cat.c │ ├── colors.c │ ├── console.c │ ├── console │ ├── config.h │ ├── data.c │ ├── init.c │ ├── interface.json │ └── vt100.c │ ├── de.c │ ├── de │ ├── clock.c │ ├── config.h │ ├── data.c │ └── init.c │ ├── debug.c │ ├── dhcpcd.c │ ├── dhcpcd │ ├── config.h │ ├── data.c │ └── option.c │ ├── dl.c │ ├── free.c │ ├── hostname.c │ ├── image.c │ ├── image │ ├── config.h │ └── data.c │ ├── ip.c │ ├── kuro copy.c │ ├── kuro copy │ ├── config.h │ ├── data.c │ ├── icon.c │ ├── icon.h │ ├── init.c │ ├── interface.json │ ├── list.c │ ├── list.h │ ├── storage.c │ └── storage.h │ ├── kuro.c │ ├── kuro │ ├── config.h │ ├── data.c │ └── interface.json │ ├── ls.c │ ├── mkdir.c │ ├── moko.c │ ├── moko │ ├── config.h │ ├── data.c │ ├── document.c │ ├── event.c │ ├── init.c │ ├── interface.c │ └── key.c │ ├── ping.c │ ├── pwd.c │ ├── shell.c │ ├── shell │ ├── config.h │ └── data.c │ ├── so.c │ ├── so │ └── interface.json │ ├── taris.c │ ├── taris │ ├── collision.c │ ├── config.h │ ├── data.c │ ├── draw.c │ ├── init.c │ ├── interface.json │ └── random.c │ ├── tm.c │ ├── tm │ ├── data.c │ └── format.c │ ├── touch.c │ ├── welcome.c │ ├── welcome │ └── interface.json │ ├── wm.c │ └── wm │ ├── config.h │ ├── cursor.c │ ├── data.c │ ├── event.c │ ├── fill.c │ ├── init.c │ ├── object.c │ ├── object.h │ ├── release.c │ ├── sync.c │ └── zone.c ├── rejected ├── kernel │ └── init │ │ └── hpet.c └── root │ ├── home │ └── root │ │ └── workbench │ │ ├── console.workbench │ │ ├── kuro.workbench │ │ ├── moko.workbench │ │ └── tm.workbench │ └── system │ └── var │ ├── cube.mtl │ ├── cube.obj │ ├── icons │ ├── 3d.tga │ ├── LICENSE.txt │ ├── accessories-text-editor.tga │ ├── application-octet-stream.tga │ ├── application-x-executable.tga │ ├── application-x-sharedlib.tga │ ├── drive-harddisk.tga │ ├── folder-green.tga │ ├── go-up.tga │ ├── image.tga │ ├── media-memory.tga │ ├── stock_lock.tga │ ├── system-file-manager.tga │ ├── taris.tga │ ├── terminal.tga │ ├── text-plain.tga │ ├── unknown.tga │ └── utilities-system-monitor.tga │ ├── monkey.mtl │ ├── monkey.obj │ ├── teapot.mtl │ └── teapot.obj ├── root ├── LICENSE.txt ├── limit.txt ├── moko.txt ├── todo.log └── var │ └── share │ └── media │ ├── cursor │ └── default.tga │ ├── icon │ ├── 3d.tga │ └── default │ │ ├── app │ │ ├── accessories-text-editor.tga │ │ ├── application-x-executable.tga │ │ ├── duckstation.tga │ │ ├── gcolor3.tga │ │ ├── system-file-manager.tga │ │ └── utilities-system-monitor.tga │ │ ├── devices │ │ ├── drive-harddisk.tga │ │ └── media-memory.tga │ │ ├── empty.tga │ │ ├── mimetypes │ │ ├── application-x-sharedlib.tga │ │ ├── image-icon.tga │ │ ├── text-plain.tga │ │ ├── text-x-chdr.tga │ │ ├── text-x-hex.tga │ │ ├── text-x-log.tga │ │ └── unknown.tga │ │ ├── places │ │ └── folder.tga │ │ └── source.txt │ └── obj │ ├── demo.mtl │ └── demo.obj ├── software ├── 3d.c ├── 3d │ ├── config.h │ ├── data.c │ ├── init.c │ └── object.c ├── kuro.c ├── kuro │ ├── config.h │ ├── data.c │ └── init.c ├── moko.c ├── palette.c ├── palette │ ├── config.h │ ├── data.c │ ├── init.c │ └── ui.c ├── test.c ├── tm.c ├── wm.c └── wm │ ├── config.h │ ├── data.c │ ├── event.c │ ├── fill.c │ ├── fill.h │ ├── init.c │ ├── menu.c │ ├── menu.h │ ├── menu.json │ ├── object.c │ ├── object.h │ ├── panel.c │ ├── panel.h │ ├── release.c │ ├── sync.c │ ├── zone.c │ └── zone.h ├── tmp ├── fs.odt ├── sb16.txt └── usb stack.ods └── tools ├── bochs-make ├── bochs.rc ├── color.png ├── deflate.c ├── demo.blend ├── kernel.ld ├── length ├── library.ld ├── limine.conf ├── linux.bxrc ├── module.ld ├── pendrive-64MiB.raw.xz ├── qemu-ehci-uhci.cfg ├── scrot.sh ├── software.ld ├── symbols ├── update-pendrive.sh ├── vfs.c └── wireshark /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/README.md -------------------------------------------------------------------------------- /bochs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/bochs -------------------------------------------------------------------------------- /default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/default.h -------------------------------------------------------------------------------- /kernel/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/apic.c -------------------------------------------------------------------------------- /kernel/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/apic.h -------------------------------------------------------------------------------- /kernel/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/config.h -------------------------------------------------------------------------------- /kernel/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/data.c -------------------------------------------------------------------------------- /kernel/driver/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/mtrr.c -------------------------------------------------------------------------------- /kernel/driver/mtrr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/mtrr.h -------------------------------------------------------------------------------- /kernel/driver/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/pci.c -------------------------------------------------------------------------------- /kernel/driver/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/pci.h -------------------------------------------------------------------------------- /kernel/driver/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/port.c -------------------------------------------------------------------------------- /kernel/driver/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/port.h -------------------------------------------------------------------------------- /kernel/driver/rtc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/rtc.asm -------------------------------------------------------------------------------- /kernel/driver/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/rtc.c -------------------------------------------------------------------------------- /kernel/driver/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/rtc.h -------------------------------------------------------------------------------- /kernel/driver/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/serial.c -------------------------------------------------------------------------------- /kernel/driver/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/serial.h -------------------------------------------------------------------------------- /kernel/driver/vmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/vmware.c -------------------------------------------------------------------------------- /kernel/driver/vmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/driver/vmware.h -------------------------------------------------------------------------------- /kernel/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/exec.c -------------------------------------------------------------------------------- /kernel/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/exec.h -------------------------------------------------------------------------------- /kernel/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/gdt.h -------------------------------------------------------------------------------- /kernel/idt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/idt.asm -------------------------------------------------------------------------------- /kernel/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/idt.c -------------------------------------------------------------------------------- /kernel/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/idt.h -------------------------------------------------------------------------------- /kernel/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init.c -------------------------------------------------------------------------------- /kernel/init/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/acpi.c -------------------------------------------------------------------------------- /kernel/init/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/acpi.h -------------------------------------------------------------------------------- /kernel/init/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/ap.c -------------------------------------------------------------------------------- /kernel/init/ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/ap.h -------------------------------------------------------------------------------- /kernel/init/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/apic.c -------------------------------------------------------------------------------- /kernel/init/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/apic.h -------------------------------------------------------------------------------- /kernel/init/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/env.c -------------------------------------------------------------------------------- /kernel/init/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/exec.c -------------------------------------------------------------------------------- /kernel/init/gdt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/gdt.asm -------------------------------------------------------------------------------- /kernel/init/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/gdt.c -------------------------------------------------------------------------------- /kernel/init/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/idt.c -------------------------------------------------------------------------------- /kernel/init/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/ipc.c -------------------------------------------------------------------------------- /kernel/init/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/library.c -------------------------------------------------------------------------------- /kernel/init/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/memory.c -------------------------------------------------------------------------------- /kernel/init/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/module.c -------------------------------------------------------------------------------- /kernel/init/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/mtrr.c -------------------------------------------------------------------------------- /kernel/init/mtrr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/mtrr.h -------------------------------------------------------------------------------- /kernel/init/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/page.c -------------------------------------------------------------------------------- /kernel/init/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/smp.c -------------------------------------------------------------------------------- /kernel/init/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/storage.c -------------------------------------------------------------------------------- /kernel/init/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/task.c -------------------------------------------------------------------------------- /kernel/init/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/terminal.c -------------------------------------------------------------------------------- /kernel/init/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/init/vfs.c -------------------------------------------------------------------------------- /kernel/io_apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/io_apic.c -------------------------------------------------------------------------------- /kernel/io_apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/io_apic.h -------------------------------------------------------------------------------- /kernel/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/ipc.h -------------------------------------------------------------------------------- /kernel/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/library.c -------------------------------------------------------------------------------- /kernel/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/library.h -------------------------------------------------------------------------------- /kernel/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/log.c -------------------------------------------------------------------------------- /kernel/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/memory.c -------------------------------------------------------------------------------- /kernel/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/memory.h -------------------------------------------------------------------------------- /kernel/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/module.c -------------------------------------------------------------------------------- /kernel/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/page.c -------------------------------------------------------------------------------- /kernel/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/page.h -------------------------------------------------------------------------------- /kernel/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/storage.c -------------------------------------------------------------------------------- /kernel/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/storage.h -------------------------------------------------------------------------------- /kernel/syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/syscall.asm -------------------------------------------------------------------------------- /kernel/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/syscall.c -------------------------------------------------------------------------------- /kernel/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/syscall.h -------------------------------------------------------------------------------- /kernel/task.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/task.asm -------------------------------------------------------------------------------- /kernel/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/task.c -------------------------------------------------------------------------------- /kernel/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/task.h -------------------------------------------------------------------------------- /kernel/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/terminal.c -------------------------------------------------------------------------------- /kernel/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/terminal.h -------------------------------------------------------------------------------- /kernel/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/time.c -------------------------------------------------------------------------------- /kernel/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/time.h -------------------------------------------------------------------------------- /kernel/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/tss.h -------------------------------------------------------------------------------- /kernel/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/vfs.c -------------------------------------------------------------------------------- /kernel/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/kernel/vfs.h -------------------------------------------------------------------------------- /library/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm.c -------------------------------------------------------------------------------- /library/asm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/config.h -------------------------------------------------------------------------------- /library/asm/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/data.c -------------------------------------------------------------------------------- /library/asm/displacement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/displacement.c -------------------------------------------------------------------------------- /library/asm/immediate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/immediate.c -------------------------------------------------------------------------------- /library/asm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/init.c -------------------------------------------------------------------------------- /library/asm/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/memory.c -------------------------------------------------------------------------------- /library/asm/modrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/modrm.c -------------------------------------------------------------------------------- /library/asm/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/name.c -------------------------------------------------------------------------------- /library/asm/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/asm/register.c -------------------------------------------------------------------------------- /library/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/color.c -------------------------------------------------------------------------------- /library/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/color.h -------------------------------------------------------------------------------- /library/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/elf.c -------------------------------------------------------------------------------- /library/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/elf.h -------------------------------------------------------------------------------- /library/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/float.c -------------------------------------------------------------------------------- /library/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/float.h -------------------------------------------------------------------------------- /library/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/font.c -------------------------------------------------------------------------------- /library/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/font.h -------------------------------------------------------------------------------- /library/font/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/font/config.h -------------------------------------------------------------------------------- /library/font/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/font/data.c -------------------------------------------------------------------------------- /library/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/image.c -------------------------------------------------------------------------------- /library/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/image.h -------------------------------------------------------------------------------- /library/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/input.c -------------------------------------------------------------------------------- /library/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/input.h -------------------------------------------------------------------------------- /library/integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/integer.c -------------------------------------------------------------------------------- /library/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/integer.h -------------------------------------------------------------------------------- /library/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/json.c -------------------------------------------------------------------------------- /library/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/json.h -------------------------------------------------------------------------------- /library/kuro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/kuro.c -------------------------------------------------------------------------------- /library/kuro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/kuro.h -------------------------------------------------------------------------------- /library/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/macro.h -------------------------------------------------------------------------------- /library/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/math.c -------------------------------------------------------------------------------- /library/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/math.h -------------------------------------------------------------------------------- /library/rgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/rgl.c -------------------------------------------------------------------------------- /library/rgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/rgl.h -------------------------------------------------------------------------------- /library/std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/std.c -------------------------------------------------------------------------------- /library/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/std.h -------------------------------------------------------------------------------- /library/std/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/std/syscall.c -------------------------------------------------------------------------------- /library/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/string.c -------------------------------------------------------------------------------- /library/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/string.h -------------------------------------------------------------------------------- /library/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/type.c -------------------------------------------------------------------------------- /library/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/type.h -------------------------------------------------------------------------------- /library/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/ui.c -------------------------------------------------------------------------------- /library/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/ui.h -------------------------------------------------------------------------------- /library/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/vfs.h -------------------------------------------------------------------------------- /library/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/window.c -------------------------------------------------------------------------------- /library/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/library/window.h -------------------------------------------------------------------------------- /make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/make -------------------------------------------------------------------------------- /module/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/module/idle.c -------------------------------------------------------------------------------- /module/ps2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/module/ps2.asm -------------------------------------------------------------------------------- /module/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/module/ps2.c -------------------------------------------------------------------------------- /module/ps2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/module/ps2/config.h -------------------------------------------------------------------------------- /module/ps2/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/module/ps2/data.c -------------------------------------------------------------------------------- /module/shredder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/module/shredder.c -------------------------------------------------------------------------------- /module/shredder/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/module/shredder/data.c -------------------------------------------------------------------------------- /qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/qemu -------------------------------------------------------------------------------- /refactoring/kernel/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/config.h -------------------------------------------------------------------------------- /refactoring/kernel/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/data.c -------------------------------------------------------------------------------- /refactoring/kernel/driver/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/pci.c -------------------------------------------------------------------------------- /refactoring/kernel/driver/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/pci.h -------------------------------------------------------------------------------- /refactoring/kernel/driver/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/port.c -------------------------------------------------------------------------------- /refactoring/kernel/driver/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/port.h -------------------------------------------------------------------------------- /refactoring/kernel/driver/rtc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/rtc.asm -------------------------------------------------------------------------------- /refactoring/kernel/driver/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/rtc.c -------------------------------------------------------------------------------- /refactoring/kernel/driver/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/rtc.h -------------------------------------------------------------------------------- /refactoring/kernel/driver/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/serial.c -------------------------------------------------------------------------------- /refactoring/kernel/driver/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/driver/serial.h -------------------------------------------------------------------------------- /refactoring/kernel/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/exec.c -------------------------------------------------------------------------------- /refactoring/kernel/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/exec.h -------------------------------------------------------------------------------- /refactoring/kernel/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/gdt.h -------------------------------------------------------------------------------- /refactoring/kernel/idt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/idt.asm -------------------------------------------------------------------------------- /refactoring/kernel/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/idt.c -------------------------------------------------------------------------------- /refactoring/kernel/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/idt.h -------------------------------------------------------------------------------- /refactoring/kernel/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init.c -------------------------------------------------------------------------------- /refactoring/kernel/init/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/acpi.c -------------------------------------------------------------------------------- /refactoring/kernel/init/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/acpi.h -------------------------------------------------------------------------------- /refactoring/kernel/init/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/ap.c -------------------------------------------------------------------------------- /refactoring/kernel/init/ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/ap.h -------------------------------------------------------------------------------- /refactoring/kernel/init/clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/clean.c -------------------------------------------------------------------------------- /refactoring/kernel/init/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/cmd.c -------------------------------------------------------------------------------- /refactoring/kernel/init/environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/environment.c -------------------------------------------------------------------------------- /refactoring/kernel/init/gdt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/gdt.asm -------------------------------------------------------------------------------- /refactoring/kernel/init/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/gdt.c -------------------------------------------------------------------------------- /refactoring/kernel/init/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/idt.c -------------------------------------------------------------------------------- /refactoring/kernel/init/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/ipc.c -------------------------------------------------------------------------------- /refactoring/kernel/init/lapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/lapic.c -------------------------------------------------------------------------------- /refactoring/kernel/init/lapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/lapic.h -------------------------------------------------------------------------------- /refactoring/kernel/init/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/library.c -------------------------------------------------------------------------------- /refactoring/kernel/init/limine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/limine.c -------------------------------------------------------------------------------- /refactoring/kernel/init/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/memory.c -------------------------------------------------------------------------------- /refactoring/kernel/init/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/module.c -------------------------------------------------------------------------------- /refactoring/kernel/init/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/network.c -------------------------------------------------------------------------------- /refactoring/kernel/init/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/page.c -------------------------------------------------------------------------------- /refactoring/kernel/init/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/smp.c -------------------------------------------------------------------------------- /refactoring/kernel/init/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/storage.c -------------------------------------------------------------------------------- /refactoring/kernel/init/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/stream.c -------------------------------------------------------------------------------- /refactoring/kernel/init/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/task.c -------------------------------------------------------------------------------- /refactoring/kernel/init/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/init/vfs.c -------------------------------------------------------------------------------- /refactoring/kernel/io_apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/io_apic.c -------------------------------------------------------------------------------- /refactoring/kernel/io_apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/io_apic.h -------------------------------------------------------------------------------- /refactoring/kernel/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/ipc.h -------------------------------------------------------------------------------- /refactoring/kernel/lapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/lapic.c -------------------------------------------------------------------------------- /refactoring/kernel/lapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/lapic.h -------------------------------------------------------------------------------- /refactoring/kernel/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/library.c -------------------------------------------------------------------------------- /refactoring/kernel/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/library.h -------------------------------------------------------------------------------- /refactoring/kernel/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/log.c -------------------------------------------------------------------------------- /refactoring/kernel/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/log.h -------------------------------------------------------------------------------- /refactoring/kernel/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/memory.c -------------------------------------------------------------------------------- /refactoring/kernel/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/memory.h -------------------------------------------------------------------------------- /refactoring/kernel/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/module.c -------------------------------------------------------------------------------- /refactoring/kernel/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/module.h -------------------------------------------------------------------------------- /refactoring/kernel/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network.c -------------------------------------------------------------------------------- /refactoring/kernel/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network.h -------------------------------------------------------------------------------- /refactoring/kernel/network/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network/arp.c -------------------------------------------------------------------------------- /refactoring/kernel/network/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network/data.c -------------------------------------------------------------------------------- /refactoring/kernel/network/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network/ethernet.c -------------------------------------------------------------------------------- /refactoring/kernel/network/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network/icmp.c -------------------------------------------------------------------------------- /refactoring/kernel/network/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network/ip.c -------------------------------------------------------------------------------- /refactoring/kernel/network/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network/socket.c -------------------------------------------------------------------------------- /refactoring/kernel/network/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network/tcp.c -------------------------------------------------------------------------------- /refactoring/kernel/network/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/network/udp.c -------------------------------------------------------------------------------- /refactoring/kernel/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/page.c -------------------------------------------------------------------------------- /refactoring/kernel/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/page.h -------------------------------------------------------------------------------- /refactoring/kernel/qfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/qfs.c -------------------------------------------------------------------------------- /refactoring/kernel/qfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/qfs.h -------------------------------------------------------------------------------- /refactoring/kernel/rtc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/rtc.asm -------------------------------------------------------------------------------- /refactoring/kernel/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/rtc.c -------------------------------------------------------------------------------- /refactoring/kernel/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/storage.c -------------------------------------------------------------------------------- /refactoring/kernel/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/storage.h -------------------------------------------------------------------------------- /refactoring/kernel/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/stream.c -------------------------------------------------------------------------------- /refactoring/kernel/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/stream.h -------------------------------------------------------------------------------- /refactoring/kernel/syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/syscall.asm -------------------------------------------------------------------------------- /refactoring/kernel/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/syscall.c -------------------------------------------------------------------------------- /refactoring/kernel/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/syscall.h -------------------------------------------------------------------------------- /refactoring/kernel/task.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/task.asm -------------------------------------------------------------------------------- /refactoring/kernel/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/task.c -------------------------------------------------------------------------------- /refactoring/kernel/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/task.h -------------------------------------------------------------------------------- /refactoring/kernel/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/time.c -------------------------------------------------------------------------------- /refactoring/kernel/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/time.h -------------------------------------------------------------------------------- /refactoring/kernel/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/tss.h -------------------------------------------------------------------------------- /refactoring/kernel/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/vfs.c -------------------------------------------------------------------------------- /refactoring/kernel/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/kernel/vfs.h -------------------------------------------------------------------------------- /refactoring/library/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/float.c -------------------------------------------------------------------------------- /refactoring/library/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/float.h -------------------------------------------------------------------------------- /refactoring/library/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/interface.c -------------------------------------------------------------------------------- /refactoring/library/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/interface.h -------------------------------------------------------------------------------- /refactoring/library/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/json.c -------------------------------------------------------------------------------- /refactoring/library/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/json.h -------------------------------------------------------------------------------- /refactoring/library/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/math.c -------------------------------------------------------------------------------- /refactoring/library/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/math.h -------------------------------------------------------------------------------- /refactoring/library/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/network.c -------------------------------------------------------------------------------- /refactoring/library/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/network.h -------------------------------------------------------------------------------- /refactoring/library/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/path.c -------------------------------------------------------------------------------- /refactoring/library/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/path.h -------------------------------------------------------------------------------- /refactoring/library/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/random.c -------------------------------------------------------------------------------- /refactoring/library/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/random.h -------------------------------------------------------------------------------- /refactoring/library/rgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/rgl.c -------------------------------------------------------------------------------- /refactoring/library/rgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/rgl.h -------------------------------------------------------------------------------- /refactoring/library/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/terminal.c -------------------------------------------------------------------------------- /refactoring/library/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/terminal.h -------------------------------------------------------------------------------- /refactoring/library/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/type.c -------------------------------------------------------------------------------- /refactoring/library/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/library/type.h -------------------------------------------------------------------------------- /refactoring/module/e1000.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/e1000.asm -------------------------------------------------------------------------------- /refactoring/module/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/e1000.c -------------------------------------------------------------------------------- /refactoring/module/e1000/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/e1000/config.h -------------------------------------------------------------------------------- /refactoring/module/e1000/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/e1000/data.c -------------------------------------------------------------------------------- /refactoring/module/es1370.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/es1370.c -------------------------------------------------------------------------------- /refactoring/module/es1370/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/es1370/config.h -------------------------------------------------------------------------------- /refactoring/module/es1370/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/es1370/data.c -------------------------------------------------------------------------------- /refactoring/module/ps2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/ps2.asm -------------------------------------------------------------------------------- /refactoring/module/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/ps2.c -------------------------------------------------------------------------------- /refactoring/module/ps2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/ps2/config.h -------------------------------------------------------------------------------- /refactoring/module/ps2/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/ps2/data.c -------------------------------------------------------------------------------- /refactoring/module/sb16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/sb16.c -------------------------------------------------------------------------------- /refactoring/module/sb16/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/sb16/config.h -------------------------------------------------------------------------------- /refactoring/module/sb16/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/sb16/data.c -------------------------------------------------------------------------------- /refactoring/module/shredder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/shredder.c -------------------------------------------------------------------------------- /refactoring/module/shredder/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/shredder/data.c -------------------------------------------------------------------------------- /refactoring/module/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb.c -------------------------------------------------------------------------------- /refactoring/module/usb/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/config.h -------------------------------------------------------------------------------- /refactoring/module/usb/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/data.c -------------------------------------------------------------------------------- /refactoring/module/usb/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/ehci.c -------------------------------------------------------------------------------- /refactoring/module/usb/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/ehci.h -------------------------------------------------------------------------------- /refactoring/module/usb/ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/ohci.c -------------------------------------------------------------------------------- /refactoring/module/usb/ohci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/ohci.h -------------------------------------------------------------------------------- /refactoring/module/usb/uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/uhci.c -------------------------------------------------------------------------------- /refactoring/module/usb/uhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/uhci.h -------------------------------------------------------------------------------- /refactoring/module/usb/xhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/xhci.c -------------------------------------------------------------------------------- /refactoring/module/usb/xhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/usb/xhci.h -------------------------------------------------------------------------------- /refactoring/module/virtio.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio.asm -------------------------------------------------------------------------------- /refactoring/module/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio.c -------------------------------------------------------------------------------- /refactoring/module/virtio/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio/block.c -------------------------------------------------------------------------------- /refactoring/module/virtio/block/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio/block/config.h -------------------------------------------------------------------------------- /refactoring/module/virtio/block/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio/block/data.c -------------------------------------------------------------------------------- /refactoring/module/virtio/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio/config.h -------------------------------------------------------------------------------- /refactoring/module/virtio/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio/data.c -------------------------------------------------------------------------------- /refactoring/module/virtio/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio/network.c -------------------------------------------------------------------------------- /refactoring/module/virtio/network/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio/network/config.h -------------------------------------------------------------------------------- /refactoring/module/virtio/network/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/module/virtio/network/data.c -------------------------------------------------------------------------------- /refactoring/software/3d copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d copy.c -------------------------------------------------------------------------------- /refactoring/software/3d copy/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d copy/config.h -------------------------------------------------------------------------------- /refactoring/software/3d copy/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d copy/data.c -------------------------------------------------------------------------------- /refactoring/software/3d copy/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d copy/init.c -------------------------------------------------------------------------------- /refactoring/software/3d copy/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d copy/interface.json -------------------------------------------------------------------------------- /refactoring/software/3d copy/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d copy/object.c -------------------------------------------------------------------------------- /refactoring/software/3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d.c -------------------------------------------------------------------------------- /refactoring/software/3d/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d/config.h -------------------------------------------------------------------------------- /refactoring/software/3d/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d/data.c -------------------------------------------------------------------------------- /refactoring/software/3d/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d/init.c -------------------------------------------------------------------------------- /refactoring/software/3d/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d/interface.json -------------------------------------------------------------------------------- /refactoring/software/3d/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/3d/object.c -------------------------------------------------------------------------------- /refactoring/software/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/cat.c -------------------------------------------------------------------------------- /refactoring/software/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/colors.c -------------------------------------------------------------------------------- /refactoring/software/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/console.c -------------------------------------------------------------------------------- /refactoring/software/console/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/console/config.h -------------------------------------------------------------------------------- /refactoring/software/console/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/console/data.c -------------------------------------------------------------------------------- /refactoring/software/console/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/console/init.c -------------------------------------------------------------------------------- /refactoring/software/console/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/console/interface.json -------------------------------------------------------------------------------- /refactoring/software/console/vt100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/console/vt100.c -------------------------------------------------------------------------------- /refactoring/software/de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/de.c -------------------------------------------------------------------------------- /refactoring/software/de/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/de/clock.c -------------------------------------------------------------------------------- /refactoring/software/de/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/de/config.h -------------------------------------------------------------------------------- /refactoring/software/de/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/de/data.c -------------------------------------------------------------------------------- /refactoring/software/de/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/de/init.c -------------------------------------------------------------------------------- /refactoring/software/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/debug.c -------------------------------------------------------------------------------- /refactoring/software/dhcpcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/dhcpcd.c -------------------------------------------------------------------------------- /refactoring/software/dhcpcd/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/dhcpcd/config.h -------------------------------------------------------------------------------- /refactoring/software/dhcpcd/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/dhcpcd/data.c -------------------------------------------------------------------------------- /refactoring/software/dhcpcd/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/dhcpcd/option.c -------------------------------------------------------------------------------- /refactoring/software/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/dl.c -------------------------------------------------------------------------------- /refactoring/software/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/free.c -------------------------------------------------------------------------------- /refactoring/software/hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/hostname.c -------------------------------------------------------------------------------- /refactoring/software/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/image.c -------------------------------------------------------------------------------- /refactoring/software/image/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/image/config.h -------------------------------------------------------------------------------- /refactoring/software/image/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/image/data.c -------------------------------------------------------------------------------- /refactoring/software/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/ip.c -------------------------------------------------------------------------------- /refactoring/software/kuro copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy.c -------------------------------------------------------------------------------- /refactoring/software/kuro copy/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/config.h -------------------------------------------------------------------------------- /refactoring/software/kuro copy/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/data.c -------------------------------------------------------------------------------- /refactoring/software/kuro copy/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/icon.c -------------------------------------------------------------------------------- /refactoring/software/kuro copy/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/icon.h -------------------------------------------------------------------------------- /refactoring/software/kuro copy/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/init.c -------------------------------------------------------------------------------- /refactoring/software/kuro copy/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/interface.json -------------------------------------------------------------------------------- /refactoring/software/kuro copy/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/list.c -------------------------------------------------------------------------------- /refactoring/software/kuro copy/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/list.h -------------------------------------------------------------------------------- /refactoring/software/kuro copy/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/storage.c -------------------------------------------------------------------------------- /refactoring/software/kuro copy/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro copy/storage.h -------------------------------------------------------------------------------- /refactoring/software/kuro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro.c -------------------------------------------------------------------------------- /refactoring/software/kuro/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro/config.h -------------------------------------------------------------------------------- /refactoring/software/kuro/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro/data.c -------------------------------------------------------------------------------- /refactoring/software/kuro/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/kuro/interface.json -------------------------------------------------------------------------------- /refactoring/software/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/ls.c -------------------------------------------------------------------------------- /refactoring/software/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/mkdir.c -------------------------------------------------------------------------------- /refactoring/software/moko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/moko.c -------------------------------------------------------------------------------- /refactoring/software/moko/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/moko/config.h -------------------------------------------------------------------------------- /refactoring/software/moko/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/moko/data.c -------------------------------------------------------------------------------- /refactoring/software/moko/document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/moko/document.c -------------------------------------------------------------------------------- /refactoring/software/moko/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/moko/event.c -------------------------------------------------------------------------------- /refactoring/software/moko/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/moko/init.c -------------------------------------------------------------------------------- /refactoring/software/moko/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/moko/interface.c -------------------------------------------------------------------------------- /refactoring/software/moko/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/moko/key.c -------------------------------------------------------------------------------- /refactoring/software/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/ping.c -------------------------------------------------------------------------------- /refactoring/software/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/pwd.c -------------------------------------------------------------------------------- /refactoring/software/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/shell.c -------------------------------------------------------------------------------- /refactoring/software/shell/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/shell/config.h -------------------------------------------------------------------------------- /refactoring/software/shell/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/shell/data.c -------------------------------------------------------------------------------- /refactoring/software/so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/so.c -------------------------------------------------------------------------------- /refactoring/software/so/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/so/interface.json -------------------------------------------------------------------------------- /refactoring/software/taris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/taris.c -------------------------------------------------------------------------------- /refactoring/software/taris/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/taris/collision.c -------------------------------------------------------------------------------- /refactoring/software/taris/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/taris/config.h -------------------------------------------------------------------------------- /refactoring/software/taris/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/taris/data.c -------------------------------------------------------------------------------- /refactoring/software/taris/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/taris/draw.c -------------------------------------------------------------------------------- /refactoring/software/taris/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/taris/init.c -------------------------------------------------------------------------------- /refactoring/software/taris/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/taris/interface.json -------------------------------------------------------------------------------- /refactoring/software/taris/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/taris/random.c -------------------------------------------------------------------------------- /refactoring/software/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/tm.c -------------------------------------------------------------------------------- /refactoring/software/tm/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/tm/data.c -------------------------------------------------------------------------------- /refactoring/software/tm/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/tm/format.c -------------------------------------------------------------------------------- /refactoring/software/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/touch.c -------------------------------------------------------------------------------- /refactoring/software/welcome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/welcome.c -------------------------------------------------------------------------------- /refactoring/software/welcome/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/welcome/interface.json -------------------------------------------------------------------------------- /refactoring/software/wm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm.c -------------------------------------------------------------------------------- /refactoring/software/wm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/config.h -------------------------------------------------------------------------------- /refactoring/software/wm/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/cursor.c -------------------------------------------------------------------------------- /refactoring/software/wm/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/data.c -------------------------------------------------------------------------------- /refactoring/software/wm/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/event.c -------------------------------------------------------------------------------- /refactoring/software/wm/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/fill.c -------------------------------------------------------------------------------- /refactoring/software/wm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/init.c -------------------------------------------------------------------------------- /refactoring/software/wm/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/object.c -------------------------------------------------------------------------------- /refactoring/software/wm/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/object.h -------------------------------------------------------------------------------- /refactoring/software/wm/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/release.c -------------------------------------------------------------------------------- /refactoring/software/wm/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/sync.c -------------------------------------------------------------------------------- /refactoring/software/wm/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/refactoring/software/wm/zone.c -------------------------------------------------------------------------------- /rejected/kernel/init/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/kernel/init/hpet.c -------------------------------------------------------------------------------- /rejected/root/home/root/workbench/console.workbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/home/root/workbench/console.workbench -------------------------------------------------------------------------------- /rejected/root/home/root/workbench/kuro.workbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/home/root/workbench/kuro.workbench -------------------------------------------------------------------------------- /rejected/root/home/root/workbench/moko.workbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/home/root/workbench/moko.workbench -------------------------------------------------------------------------------- /rejected/root/home/root/workbench/tm.workbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/home/root/workbench/tm.workbench -------------------------------------------------------------------------------- /rejected/root/system/var/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/cube.mtl -------------------------------------------------------------------------------- /rejected/root/system/var/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/cube.obj -------------------------------------------------------------------------------- /rejected/root/system/var/icons/3d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/3d.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/LICENSE.txt -------------------------------------------------------------------------------- /rejected/root/system/var/icons/accessories-text-editor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/accessories-text-editor.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/application-octet-stream.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/application-octet-stream.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/application-x-executable.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/application-x-executable.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/application-x-sharedlib.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/application-x-sharedlib.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/drive-harddisk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/drive-harddisk.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/folder-green.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/folder-green.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/go-up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/go-up.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/image.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/image.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/media-memory.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/media-memory.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/stock_lock.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/stock_lock.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/system-file-manager.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/system-file-manager.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/taris.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/taris.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/terminal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/terminal.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/text-plain.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/text-plain.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/unknown.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/unknown.tga -------------------------------------------------------------------------------- /rejected/root/system/var/icons/utilities-system-monitor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/icons/utilities-system-monitor.tga -------------------------------------------------------------------------------- /rejected/root/system/var/monkey.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/monkey.mtl -------------------------------------------------------------------------------- /rejected/root/system/var/monkey.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/monkey.obj -------------------------------------------------------------------------------- /rejected/root/system/var/teapot.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/teapot.mtl -------------------------------------------------------------------------------- /rejected/root/system/var/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/rejected/root/system/var/teapot.obj -------------------------------------------------------------------------------- /root/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/LICENSE.txt -------------------------------------------------------------------------------- /root/limit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/limit.txt -------------------------------------------------------------------------------- /root/moko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/moko.txt -------------------------------------------------------------------------------- /root/todo.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/todo.log -------------------------------------------------------------------------------- /root/var/share/media/cursor/default.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/cursor/default.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/3d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/3d.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/app/accessories-text-editor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/app/accessories-text-editor.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/app/application-x-executable.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/app/application-x-executable.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/app/duckstation.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/app/duckstation.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/app/gcolor3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/app/gcolor3.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/app/system-file-manager.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/app/system-file-manager.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/app/utilities-system-monitor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/app/utilities-system-monitor.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/devices/drive-harddisk.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/devices/drive-harddisk.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/devices/media-memory.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/devices/media-memory.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/empty.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/empty.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/mimetypes/application-x-sharedlib.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/mimetypes/application-x-sharedlib.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/mimetypes/image-icon.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/mimetypes/image-icon.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/mimetypes/text-plain.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/mimetypes/text-plain.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/mimetypes/text-x-chdr.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/mimetypes/text-x-chdr.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/mimetypes/text-x-hex.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/mimetypes/text-x-hex.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/mimetypes/text-x-log.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/mimetypes/text-x-log.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/mimetypes/unknown.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/mimetypes/unknown.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/places/folder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/places/folder.tga -------------------------------------------------------------------------------- /root/var/share/media/icon/default/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/icon/default/source.txt -------------------------------------------------------------------------------- /root/var/share/media/obj/demo.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/obj/demo.mtl -------------------------------------------------------------------------------- /root/var/share/media/obj/demo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/root/var/share/media/obj/demo.obj -------------------------------------------------------------------------------- /software/3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/3d.c -------------------------------------------------------------------------------- /software/3d/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/3d/config.h -------------------------------------------------------------------------------- /software/3d/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/3d/data.c -------------------------------------------------------------------------------- /software/3d/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/3d/init.c -------------------------------------------------------------------------------- /software/3d/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/3d/object.c -------------------------------------------------------------------------------- /software/kuro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/kuro.c -------------------------------------------------------------------------------- /software/kuro/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/kuro/config.h -------------------------------------------------------------------------------- /software/kuro/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/kuro/data.c -------------------------------------------------------------------------------- /software/kuro/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/kuro/init.c -------------------------------------------------------------------------------- /software/moko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/moko.c -------------------------------------------------------------------------------- /software/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/palette.c -------------------------------------------------------------------------------- /software/palette/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/palette/config.h -------------------------------------------------------------------------------- /software/palette/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/palette/data.c -------------------------------------------------------------------------------- /software/palette/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/palette/init.c -------------------------------------------------------------------------------- /software/palette/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/palette/ui.c -------------------------------------------------------------------------------- /software/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/test.c -------------------------------------------------------------------------------- /software/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/tm.c -------------------------------------------------------------------------------- /software/wm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm.c -------------------------------------------------------------------------------- /software/wm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/config.h -------------------------------------------------------------------------------- /software/wm/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/data.c -------------------------------------------------------------------------------- /software/wm/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/event.c -------------------------------------------------------------------------------- /software/wm/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/fill.c -------------------------------------------------------------------------------- /software/wm/fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/fill.h -------------------------------------------------------------------------------- /software/wm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/init.c -------------------------------------------------------------------------------- /software/wm/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/menu.c -------------------------------------------------------------------------------- /software/wm/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/menu.h -------------------------------------------------------------------------------- /software/wm/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/menu.json -------------------------------------------------------------------------------- /software/wm/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/object.c -------------------------------------------------------------------------------- /software/wm/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/object.h -------------------------------------------------------------------------------- /software/wm/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/panel.c -------------------------------------------------------------------------------- /software/wm/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/panel.h -------------------------------------------------------------------------------- /software/wm/release.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/release.c -------------------------------------------------------------------------------- /software/wm/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/sync.c -------------------------------------------------------------------------------- /software/wm/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/zone.c -------------------------------------------------------------------------------- /software/wm/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/software/wm/zone.h -------------------------------------------------------------------------------- /tmp/fs.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tmp/fs.odt -------------------------------------------------------------------------------- /tmp/sb16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tmp/sb16.txt -------------------------------------------------------------------------------- /tmp/usb stack.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tmp/usb stack.ods -------------------------------------------------------------------------------- /tools/bochs-make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/bochs-make -------------------------------------------------------------------------------- /tools/bochs.rc: -------------------------------------------------------------------------------- 1 | c 2 | -------------------------------------------------------------------------------- /tools/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/color.png -------------------------------------------------------------------------------- /tools/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/deflate.c -------------------------------------------------------------------------------- /tools/demo.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/demo.blend -------------------------------------------------------------------------------- /tools/kernel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/kernel.ld -------------------------------------------------------------------------------- /tools/length: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/length -------------------------------------------------------------------------------- /tools/library.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/library.ld -------------------------------------------------------------------------------- /tools/limine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/limine.conf -------------------------------------------------------------------------------- /tools/linux.bxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/linux.bxrc -------------------------------------------------------------------------------- /tools/module.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/module.ld -------------------------------------------------------------------------------- /tools/pendrive-64MiB.raw.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/pendrive-64MiB.raw.xz -------------------------------------------------------------------------------- /tools/qemu-ehci-uhci.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/qemu-ehci-uhci.cfg -------------------------------------------------------------------------------- /tools/scrot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/scrot.sh -------------------------------------------------------------------------------- /tools/software.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/software.ld -------------------------------------------------------------------------------- /tools/symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/symbols -------------------------------------------------------------------------------- /tools/update-pendrive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/update-pendrive.sh -------------------------------------------------------------------------------- /tools/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/vfs.c -------------------------------------------------------------------------------- /tools/wireshark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Foton/HEAD/tools/wireshark --------------------------------------------------------------------------------