├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── daemon └── gc.d.c ├── default.h ├── deflate.c ├── gfx ├── cursor.tga └── wallpaper.tga ├── home └── welcome.txt ├── kernel ├── config.h ├── data.c ├── driver │ ├── port.c │ ├── port.h │ ├── ps2.asm │ ├── ps2.c │ ├── ps2.h │ ├── rtc.c │ ├── rtc.h │ ├── serial.c │ └── serial.h ├── exec.c ├── exec.h ├── gdt.h ├── hpet.asm ├── hpet.c ├── hpet.h ├── idt.c ├── idt.h ├── init.c ├── init │ ├── acpi.c │ ├── acpi.h │ ├── ap.c │ ├── ap.h │ ├── cmd.c │ ├── cmd.h │ ├── daemon.c │ ├── daemon.h │ ├── data.c │ ├── env.c │ ├── env.h │ ├── exec.c │ ├── exec.h │ ├── free.c │ ├── free.h │ ├── gdt.asm │ ├── gdt.c │ ├── gdt.h │ ├── hpet.c │ ├── idt.asm │ ├── idt.c │ ├── idt.h │ ├── ipc.c │ ├── ipc.h │ ├── library.c │ ├── limine.c │ ├── memory.c │ ├── memory.h │ ├── page.c │ ├── page.h │ ├── rtc.c │ ├── smp.c │ ├── smp.h │ ├── storage.c │ ├── storage.h │ ├── stream.c │ ├── stream.h │ ├── task.c │ └── task.h ├── io_apic.c ├── io_apic.h ├── ipc.h ├── lapic.c ├── lapic.h ├── library.c ├── library.h ├── log.c ├── log.h ├── memory.c ├── memory.h ├── page.c ├── page.h ├── rtc.asm ├── rtc.c ├── service.asm ├── service.c ├── service.h ├── storage.c ├── storage.h ├── stream.c ├── stream.h ├── task.asm ├── task.c ├── task.h └── tss.h ├── library ├── lib_tar.c ├── lib_tar.h ├── shared │ ├── color.c │ ├── color.h │ ├── elf.c │ ├── elf.h │ ├── font.c │ ├── font.h │ ├── image.c │ ├── image.h │ ├── integer.c │ ├── integer.h │ ├── interface.c │ ├── interface.h │ ├── json.c │ ├── json.h │ ├── math.c │ ├── math.cos.h │ ├── random.c │ ├── random.h │ ├── rgl.c │ ├── rgl │ │ └── config.h │ ├── string.c │ ├── string.h │ ├── sys.c │ ├── sys.h │ ├── sys │ │ ├── default.c │ │ ├── exec.c │ │ ├── framebuffer.c │ │ ├── ipc.c │ │ ├── keyboard.c │ │ ├── memory.c │ │ ├── mouse.c │ │ ├── serial.c │ │ ├── storage.c │ │ ├── stream.c │ │ ├── task.c │ │ ├── thread.c │ │ └── time.c │ ├── sys_entry.h │ ├── terminal.c │ └── terminal.h ├── vfs.c └── vfs.h ├── limine.conf ├── linker.daemon ├── linker.kernel ├── linker.library ├── linker.software ├── make ├── qemu.sh ├── removed ├── gfx │ ├── cube.obj │ ├── earth.mtl │ ├── earth.obj │ ├── plane.obj │ └── teapot.obj ├── library │ ├── rgl.c │ └── rgl.h └── software │ ├── 3d.c │ ├── 3d │ ├── config.h │ ├── data.c │ └── interface.json │ ├── d.c │ ├── d │ └── d.c │ ├── debug.c │ ├── debug.json │ ├── fm.c │ ├── fm │ ├── config.h │ ├── data.c │ └── interface.json │ ├── new.c │ ├── old.c │ ├── old.json │ ├── older.c │ ├── taris.c │ ├── taris │ ├── collision.c │ ├── config.h │ ├── data.c │ ├── draw.c │ ├── init.c │ ├── random.c │ └── taris.json │ └── top.c ├── software ├── cat.c ├── console.c ├── console.h ├── console │ ├── config.h │ ├── console.json │ ├── data.c │ └── init.c ├── free.c ├── ls.c ├── ps.c ├── shell.c ├── shell │ ├── config.h │ └── data.c ├── uptime.c ├── wm.c ├── wm.h └── wm │ ├── clock.c │ ├── clock.h │ ├── clock.json │ ├── config.h │ ├── data.c │ ├── event.c │ ├── event.h │ ├── fill.c │ ├── fill.h │ ├── init.c │ ├── init.h │ ├── ipc.c │ ├── ipc.h │ ├── menu.c │ ├── menu.h │ ├── menu.json │ ├── object.c │ ├── object.h │ ├── sync.c │ ├── sync.h │ ├── taskbar.c │ ├── taskbar.h │ ├── taskbar.json │ ├── zone.c │ └── zone.h └── vfs.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/README.md -------------------------------------------------------------------------------- /daemon/gc.d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/daemon/gc.d.c -------------------------------------------------------------------------------- /default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/default.h -------------------------------------------------------------------------------- /deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/deflate.c -------------------------------------------------------------------------------- /gfx/cursor.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/gfx/cursor.tga -------------------------------------------------------------------------------- /gfx/wallpaper.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/gfx/wallpaper.tga -------------------------------------------------------------------------------- /home/welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/home/welcome.txt -------------------------------------------------------------------------------- /kernel/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/config.h -------------------------------------------------------------------------------- /kernel/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/data.c -------------------------------------------------------------------------------- /kernel/driver/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/port.c -------------------------------------------------------------------------------- /kernel/driver/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/port.h -------------------------------------------------------------------------------- /kernel/driver/ps2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/ps2.asm -------------------------------------------------------------------------------- /kernel/driver/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/ps2.c -------------------------------------------------------------------------------- /kernel/driver/ps2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/ps2.h -------------------------------------------------------------------------------- /kernel/driver/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/rtc.c -------------------------------------------------------------------------------- /kernel/driver/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/rtc.h -------------------------------------------------------------------------------- /kernel/driver/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/serial.c -------------------------------------------------------------------------------- /kernel/driver/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/driver/serial.h -------------------------------------------------------------------------------- /kernel/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/exec.c -------------------------------------------------------------------------------- /kernel/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/exec.h -------------------------------------------------------------------------------- /kernel/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/gdt.h -------------------------------------------------------------------------------- /kernel/hpet.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/hpet.asm -------------------------------------------------------------------------------- /kernel/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/hpet.c -------------------------------------------------------------------------------- /kernel/hpet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/hpet.h -------------------------------------------------------------------------------- /kernel/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/idt.c -------------------------------------------------------------------------------- /kernel/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/idt.h -------------------------------------------------------------------------------- /kernel/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init.c -------------------------------------------------------------------------------- /kernel/init/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/acpi.c -------------------------------------------------------------------------------- /kernel/init/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/acpi.h -------------------------------------------------------------------------------- /kernel/init/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/ap.c -------------------------------------------------------------------------------- /kernel/init/ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/ap.h -------------------------------------------------------------------------------- /kernel/init/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/cmd.c -------------------------------------------------------------------------------- /kernel/init/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/cmd.h -------------------------------------------------------------------------------- /kernel/init/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/daemon.c -------------------------------------------------------------------------------- /kernel/init/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/daemon.h -------------------------------------------------------------------------------- /kernel/init/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/data.c -------------------------------------------------------------------------------- /kernel/init/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/env.c -------------------------------------------------------------------------------- /kernel/init/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/env.h -------------------------------------------------------------------------------- /kernel/init/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/exec.c -------------------------------------------------------------------------------- /kernel/init/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/exec.h -------------------------------------------------------------------------------- /kernel/init/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/free.c -------------------------------------------------------------------------------- /kernel/init/free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/free.h -------------------------------------------------------------------------------- /kernel/init/gdt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/gdt.asm -------------------------------------------------------------------------------- /kernel/init/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/gdt.c -------------------------------------------------------------------------------- /kernel/init/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/gdt.h -------------------------------------------------------------------------------- /kernel/init/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/hpet.c -------------------------------------------------------------------------------- /kernel/init/idt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/idt.asm -------------------------------------------------------------------------------- /kernel/init/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/idt.c -------------------------------------------------------------------------------- /kernel/init/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/idt.h -------------------------------------------------------------------------------- /kernel/init/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/ipc.c -------------------------------------------------------------------------------- /kernel/init/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/ipc.h -------------------------------------------------------------------------------- /kernel/init/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/library.c -------------------------------------------------------------------------------- /kernel/init/limine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/limine.c -------------------------------------------------------------------------------- /kernel/init/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/memory.c -------------------------------------------------------------------------------- /kernel/init/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/memory.h -------------------------------------------------------------------------------- /kernel/init/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/page.c -------------------------------------------------------------------------------- /kernel/init/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/page.h -------------------------------------------------------------------------------- /kernel/init/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/rtc.c -------------------------------------------------------------------------------- /kernel/init/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/smp.c -------------------------------------------------------------------------------- /kernel/init/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/smp.h -------------------------------------------------------------------------------- /kernel/init/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/storage.c -------------------------------------------------------------------------------- /kernel/init/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/storage.h -------------------------------------------------------------------------------- /kernel/init/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/stream.c -------------------------------------------------------------------------------- /kernel/init/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/stream.h -------------------------------------------------------------------------------- /kernel/init/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/task.c -------------------------------------------------------------------------------- /kernel/init/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/init/task.h -------------------------------------------------------------------------------- /kernel/io_apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/io_apic.c -------------------------------------------------------------------------------- /kernel/io_apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/io_apic.h -------------------------------------------------------------------------------- /kernel/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/ipc.h -------------------------------------------------------------------------------- /kernel/lapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/lapic.c -------------------------------------------------------------------------------- /kernel/lapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/lapic.h -------------------------------------------------------------------------------- /kernel/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/library.c -------------------------------------------------------------------------------- /kernel/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/library.h -------------------------------------------------------------------------------- /kernel/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/log.c -------------------------------------------------------------------------------- /kernel/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/log.h -------------------------------------------------------------------------------- /kernel/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/memory.c -------------------------------------------------------------------------------- /kernel/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/memory.h -------------------------------------------------------------------------------- /kernel/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/page.c -------------------------------------------------------------------------------- /kernel/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/page.h -------------------------------------------------------------------------------- /kernel/rtc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/rtc.asm -------------------------------------------------------------------------------- /kernel/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/rtc.c -------------------------------------------------------------------------------- /kernel/service.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/service.asm -------------------------------------------------------------------------------- /kernel/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/service.c -------------------------------------------------------------------------------- /kernel/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/service.h -------------------------------------------------------------------------------- /kernel/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/storage.c -------------------------------------------------------------------------------- /kernel/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/storage.h -------------------------------------------------------------------------------- /kernel/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/stream.c -------------------------------------------------------------------------------- /kernel/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/stream.h -------------------------------------------------------------------------------- /kernel/task.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/task.asm -------------------------------------------------------------------------------- /kernel/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/task.c -------------------------------------------------------------------------------- /kernel/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/task.h -------------------------------------------------------------------------------- /kernel/tss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/kernel/tss.h -------------------------------------------------------------------------------- /library/lib_tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/lib_tar.c -------------------------------------------------------------------------------- /library/lib_tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/lib_tar.h -------------------------------------------------------------------------------- /library/shared/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/color.c -------------------------------------------------------------------------------- /library/shared/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/color.h -------------------------------------------------------------------------------- /library/shared/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/elf.c -------------------------------------------------------------------------------- /library/shared/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/elf.h -------------------------------------------------------------------------------- /library/shared/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/font.c -------------------------------------------------------------------------------- /library/shared/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/font.h -------------------------------------------------------------------------------- /library/shared/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/image.c -------------------------------------------------------------------------------- /library/shared/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/image.h -------------------------------------------------------------------------------- /library/shared/integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/integer.c -------------------------------------------------------------------------------- /library/shared/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/integer.h -------------------------------------------------------------------------------- /library/shared/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/interface.c -------------------------------------------------------------------------------- /library/shared/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/interface.h -------------------------------------------------------------------------------- /library/shared/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/json.c -------------------------------------------------------------------------------- /library/shared/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/json.h -------------------------------------------------------------------------------- /library/shared/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/math.c -------------------------------------------------------------------------------- /library/shared/math.cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/math.cos.h -------------------------------------------------------------------------------- /library/shared/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/random.c -------------------------------------------------------------------------------- /library/shared/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/random.h -------------------------------------------------------------------------------- /library/shared/rgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/rgl.c -------------------------------------------------------------------------------- /library/shared/rgl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/rgl/config.h -------------------------------------------------------------------------------- /library/shared/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/string.c -------------------------------------------------------------------------------- /library/shared/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/string.h -------------------------------------------------------------------------------- /library/shared/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys.c -------------------------------------------------------------------------------- /library/shared/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys.h -------------------------------------------------------------------------------- /library/shared/sys/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/default.c -------------------------------------------------------------------------------- /library/shared/sys/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/exec.c -------------------------------------------------------------------------------- /library/shared/sys/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/framebuffer.c -------------------------------------------------------------------------------- /library/shared/sys/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/ipc.c -------------------------------------------------------------------------------- /library/shared/sys/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/keyboard.c -------------------------------------------------------------------------------- /library/shared/sys/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/memory.c -------------------------------------------------------------------------------- /library/shared/sys/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/mouse.c -------------------------------------------------------------------------------- /library/shared/sys/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/serial.c -------------------------------------------------------------------------------- /library/shared/sys/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/storage.c -------------------------------------------------------------------------------- /library/shared/sys/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/stream.c -------------------------------------------------------------------------------- /library/shared/sys/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/task.c -------------------------------------------------------------------------------- /library/shared/sys/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/thread.c -------------------------------------------------------------------------------- /library/shared/sys/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys/time.c -------------------------------------------------------------------------------- /library/shared/sys_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/sys_entry.h -------------------------------------------------------------------------------- /library/shared/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/terminal.c -------------------------------------------------------------------------------- /library/shared/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/shared/terminal.h -------------------------------------------------------------------------------- /library/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/vfs.c -------------------------------------------------------------------------------- /library/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/library/vfs.h -------------------------------------------------------------------------------- /limine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/limine.conf -------------------------------------------------------------------------------- /linker.daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/linker.daemon -------------------------------------------------------------------------------- /linker.kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/linker.kernel -------------------------------------------------------------------------------- /linker.library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/linker.library -------------------------------------------------------------------------------- /linker.software: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/linker.software -------------------------------------------------------------------------------- /make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/make -------------------------------------------------------------------------------- /qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/qemu.sh -------------------------------------------------------------------------------- /removed/gfx/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/gfx/cube.obj -------------------------------------------------------------------------------- /removed/gfx/earth.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/gfx/earth.mtl -------------------------------------------------------------------------------- /removed/gfx/earth.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/gfx/earth.obj -------------------------------------------------------------------------------- /removed/gfx/plane.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/gfx/plane.obj -------------------------------------------------------------------------------- /removed/gfx/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/gfx/teapot.obj -------------------------------------------------------------------------------- /removed/library/rgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/library/rgl.c -------------------------------------------------------------------------------- /removed/library/rgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/library/rgl.h -------------------------------------------------------------------------------- /removed/software/3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/3d.c -------------------------------------------------------------------------------- /removed/software/3d/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/3d/config.h -------------------------------------------------------------------------------- /removed/software/3d/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/3d/data.c -------------------------------------------------------------------------------- /removed/software/3d/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/3d/interface.json -------------------------------------------------------------------------------- /removed/software/d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/d.c -------------------------------------------------------------------------------- /removed/software/d/d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/d/d.c -------------------------------------------------------------------------------- /removed/software/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/debug.c -------------------------------------------------------------------------------- /removed/software/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/debug.json -------------------------------------------------------------------------------- /removed/software/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/fm.c -------------------------------------------------------------------------------- /removed/software/fm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/fm/config.h -------------------------------------------------------------------------------- /removed/software/fm/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/fm/data.c -------------------------------------------------------------------------------- /removed/software/fm/interface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/fm/interface.json -------------------------------------------------------------------------------- /removed/software/new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/new.c -------------------------------------------------------------------------------- /removed/software/old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/old.c -------------------------------------------------------------------------------- /removed/software/old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/old.json -------------------------------------------------------------------------------- /removed/software/older.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/older.c -------------------------------------------------------------------------------- /removed/software/taris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/taris.c -------------------------------------------------------------------------------- /removed/software/taris/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/taris/collision.c -------------------------------------------------------------------------------- /removed/software/taris/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/taris/config.h -------------------------------------------------------------------------------- /removed/software/taris/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/taris/data.c -------------------------------------------------------------------------------- /removed/software/taris/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/taris/draw.c -------------------------------------------------------------------------------- /removed/software/taris/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/taris/init.c -------------------------------------------------------------------------------- /removed/software/taris/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/taris/random.c -------------------------------------------------------------------------------- /removed/software/taris/taris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/taris/taris.json -------------------------------------------------------------------------------- /removed/software/top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/removed/software/top.c -------------------------------------------------------------------------------- /software/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/cat.c -------------------------------------------------------------------------------- /software/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/console.c -------------------------------------------------------------------------------- /software/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/console.h -------------------------------------------------------------------------------- /software/console/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/console/config.h -------------------------------------------------------------------------------- /software/console/console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/console/console.json -------------------------------------------------------------------------------- /software/console/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/console/data.c -------------------------------------------------------------------------------- /software/console/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/console/init.c -------------------------------------------------------------------------------- /software/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/free.c -------------------------------------------------------------------------------- /software/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/ls.c -------------------------------------------------------------------------------- /software/ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/ps.c -------------------------------------------------------------------------------- /software/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/shell.c -------------------------------------------------------------------------------- /software/shell/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/shell/config.h -------------------------------------------------------------------------------- /software/shell/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/shell/data.c -------------------------------------------------------------------------------- /software/uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/uptime.c -------------------------------------------------------------------------------- /software/wm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm.c -------------------------------------------------------------------------------- /software/wm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm.h -------------------------------------------------------------------------------- /software/wm/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/clock.c -------------------------------------------------------------------------------- /software/wm/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/clock.h -------------------------------------------------------------------------------- /software/wm/clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/clock.json -------------------------------------------------------------------------------- /software/wm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/config.h -------------------------------------------------------------------------------- /software/wm/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/data.c -------------------------------------------------------------------------------- /software/wm/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/event.c -------------------------------------------------------------------------------- /software/wm/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/event.h -------------------------------------------------------------------------------- /software/wm/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/fill.c -------------------------------------------------------------------------------- /software/wm/fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/fill.h -------------------------------------------------------------------------------- /software/wm/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/init.c -------------------------------------------------------------------------------- /software/wm/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/init.h -------------------------------------------------------------------------------- /software/wm/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/ipc.c -------------------------------------------------------------------------------- /software/wm/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/ipc.h -------------------------------------------------------------------------------- /software/wm/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/menu.c -------------------------------------------------------------------------------- /software/wm/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/menu.h -------------------------------------------------------------------------------- /software/wm/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/menu.json -------------------------------------------------------------------------------- /software/wm/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/object.c -------------------------------------------------------------------------------- /software/wm/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/object.h -------------------------------------------------------------------------------- /software/wm/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/sync.c -------------------------------------------------------------------------------- /software/wm/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/sync.h -------------------------------------------------------------------------------- /software/wm/taskbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/taskbar.c -------------------------------------------------------------------------------- /software/wm/taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/taskbar.h -------------------------------------------------------------------------------- /software/wm/taskbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/taskbar.json -------------------------------------------------------------------------------- /software/wm/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/zone.c -------------------------------------------------------------------------------- /software/wm/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/software/wm/zone.h -------------------------------------------------------------------------------- /vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorruptedByCPU/Fern-Night/HEAD/vfs.c --------------------------------------------------------------------------------