├── AUTHORS ├── LICENSE ├── README.md └── src ├── REboot_HBP ├── isr1_first.asm ├── isr1_second.asm └── isr1_third.asm ├── REboot_RingProt └── handler_64.asm └── Reboot_v8086 ├── enter_v8086.asm ├── gp_handler.c ├── gp_handler.h ├── interrupt.c ├── interrupt.h ├── isr.asm ├── kernel.c ├── kernel.h ├── mem.c ├── mem.h ├── string.c ├── string.h ├── write.c └── write.h /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/README.md -------------------------------------------------------------------------------- /src/REboot_HBP/isr1_first.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/REboot_HBP/isr1_first.asm -------------------------------------------------------------------------------- /src/REboot_HBP/isr1_second.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/REboot_HBP/isr1_second.asm -------------------------------------------------------------------------------- /src/REboot_HBP/isr1_third.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/REboot_HBP/isr1_third.asm -------------------------------------------------------------------------------- /src/REboot_RingProt/handler_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/REboot_RingProt/handler_64.asm -------------------------------------------------------------------------------- /src/Reboot_v8086/enter_v8086.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/enter_v8086.asm -------------------------------------------------------------------------------- /src/Reboot_v8086/gp_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/gp_handler.c -------------------------------------------------------------------------------- /src/Reboot_v8086/gp_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/gp_handler.h -------------------------------------------------------------------------------- /src/Reboot_v8086/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/interrupt.c -------------------------------------------------------------------------------- /src/Reboot_v8086/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/interrupt.h -------------------------------------------------------------------------------- /src/Reboot_v8086/isr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/isr.asm -------------------------------------------------------------------------------- /src/Reboot_v8086/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/kernel.c -------------------------------------------------------------------------------- /src/Reboot_v8086/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/kernel.h -------------------------------------------------------------------------------- /src/Reboot_v8086/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/mem.c -------------------------------------------------------------------------------- /src/Reboot_v8086/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/mem.h -------------------------------------------------------------------------------- /src/Reboot_v8086/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/string.c -------------------------------------------------------------------------------- /src/Reboot_v8086/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/string.h -------------------------------------------------------------------------------- /src/Reboot_v8086/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/write.c -------------------------------------------------------------------------------- /src/Reboot_v8086/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogeti-esec-lab/REBoot/HEAD/src/Reboot_v8086/write.h --------------------------------------------------------------------------------