Initial commitmaster
commitf4204dc0b6476277f9cf2ff3b6a436593ecd40b5
authorSylvain BERTRAND <sylvain.bertrand@legeek.net>
Tue, 31 Jan 2023 15:26:08 +0000 (31 15:26 +0000)
committerSylvain BERTRAND <sylvain.bertrand@legeek.net>
Tue, 31 Jan 2023 15:26:08 +0000 (31 15:26 +0000)
treec25c24e27b531f43865c4341536293be9ece0925
Initial commit
91 files changed:
.gitignore [new file with mode: 0644]
ARITHMETICS [new file with mode: 0644]
ASSEMBLY [new file with mode: 0644]
COPYING [new file with mode: 0644]
PREPROCESSOR_CPP [new file with mode: 0644]
README [new file with mode: 0644]
TODO [new file with mode: 0644]
arch/x64/boot/efi/head.S [new file with mode: 0644]
arch/x64/boot/efi/make_os_loader.sh [new file with mode: 0755]
arch/x64/boot/efi/os_loader.LD [new file with mode: 0644]
arch/x64/boot/efi/os_loader.S [new file with mode: 0644]
arch/x64/boot/efi/os_loader.c [new file with mode: 0644]
arch/x64/boot/efi/pp/cpp/arch/os_loader.h [new file with mode: 0644]
arch/x64/drivers/usb/host/xhci-dbc.S [new file with mode: 0644]
arch/x64/kernel/head.S [new file with mode: 0644]
arch/x64/kernel/init/memblk.S [new file with mode: 0644]
arch/x64/kernel/main.S [new file with mode: 0644]
arch/x64/kernel/make_vmnyan.sh [new file with mode: 0755]
arch/x64/kernel/ptbls.S [new file with mode: 0644]
arch/x64/kernel/vmnyan.LD [new file with mode: 0644]
arch/x64/lib/div64.c [new file with mode: 0644]
arch/x64/lib/memcpy.S [new file with mode: 0644]
arch/x64/lib/memmove.S [new file with mode: 0644]
arch/x64/lib/memset.S [new file with mode: 0644]
arch/x64/mm/free_pages/__free_page.S [new file with mode: 0644]
arch/x64/mm/free_pages/alloc_page.S [new file with mode: 0644]
arch/x64/mm/free_pages/init/list.S [new file with mode: 0644]
arch/x64/mm/free_pages/state.S [new file with mode: 0644]
arch/x64/non-tested/buddy/README [new file with mode: 0644]
arch/x64/non-tested/buddy/__free_pages.S [new file with mode: 0644]
arch/x64/non-tested/buddy/alloc_pages.S [new file with mode: 0644]
arch/x64/non-tested/buddy/state.S [new file with mode: 0644]
arch/x64/pp/cpp/arch/assembler.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/byteorder.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/cr4.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/div64.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/efer.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/mm.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/page_types.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/pci.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/ptbls_types.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/setup.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/string.h [new file with mode: 0644]
arch/x64/pp/cpp/arch/xdbc.h [new file with mode: 0644]
arch/x64/pp/cpp/linux/arch/compat.h [new file with mode: 0644]
arch/x64/pp/cpp/uapi/arch/bitsperlong.h [new file with mode: 0644]
arch/x64/pp/cpp/uapi/arch/boot_params.h [new file with mode: 0644]
configure [new file with mode: 0755]
drivers/firmware/efi/os_loader/README [new file with mode: 0644]
drivers/firmware/efi/os_loader/alignedmem.c [new file with mode: 0644]
drivers/firmware/efi/os_loader/mem.c [new file with mode: 0644]
drivers/firmware/efi/os_loader/misc.c [new file with mode: 0644]
drivers/firmware/efi/os_loader/pci.c [new file with mode: 0644]
drivers/firmware/efi/os_loader/pp/cpp/generic/os_loader.h [new file with mode: 0644]
drivers/firmware/efi/os_loader/skip_spaces.c [new file with mode: 0644]
drivers/firmware/efi/os_loader/string.c [new file with mode: 0644]
drivers/firmware/efi/os_loader/vsprintf.c [new file with mode: 0644]
drivers/usb/host/pp/cpp/xhci-dbc.h [new file with mode: 0644]
kconfig-hardcoded/auto.conf [new file with mode: 0644]
kconfig-hardcoded/autoconf.h [new file with mode: 0644]
lib/cmdline.c [new file with mode: 0644]
lib/ctype.c [new file with mode: 0644]
lib/hexdump.c [new file with mode: 0644]
lib/string.c [new file with mode: 0644]
lib/vsprintf.c [new file with mode: 0644]
pp/cpp/arch-generic/acpi/actbl.h [new file with mode: 0644]
pp/cpp/nyan/align.h [new file with mode: 0644]
pp/cpp/nyan/compiler.h [new file with mode: 0644]
pp/cpp/nyan/const.h [new file with mode: 0644]
pp/cpp/nyan/ctype.h [new file with mode: 0644]
pp/cpp/nyan/efi.h [new file with mode: 0644]
pp/cpp/nyan/err.h [new file with mode: 0644]
pp/cpp/nyan/errno.h [new file with mode: 0644]
pp/cpp/nyan/kconfig.h [new file with mode: 0644]
pp/cpp/nyan/kern_levels.h [new file with mode: 0644]
pp/cpp/nyan/kernel.h [new file with mode: 0644]
pp/cpp/nyan/math.h [new file with mode: 0644]
pp/cpp/nyan/minmax.h [new file with mode: 0644]
pp/cpp/nyan/pci_ids.h [new file with mode: 0644]
pp/cpp/nyan/pci_regs.h [new file with mode: 0644]
pp/cpp/nyan/pe.h [new file with mode: 0644]
pp/cpp/nyan/printk.h [new file with mode: 0644]
pp/cpp/nyan/sizes.h [new file with mode: 0644]
pp/cpp/nyan/string.h [new file with mode: 0644]
pp/cpp/nyan/types.h [new file with mode: 0644]
tools/cproc/host/pp/cpp/stdarg.h [new file with mode: 0644]
tools/cproc/host/pp/cpp/stddef.h [new file with mode: 0644]
tools/cproc/target/pp/cpp/stdarg.h [new file with mode: 0644]
tools/cproc/target/pp/cpp/stdbool.h [new file with mode: 0644]
tools/cproc/target/pp/cpp/stddef.h [new file with mode: 0644]
vim/cppasm.vim [new file with mode: 0644]