Untitled_Bootloader/connect_gdb.sh
lordtet 7266661097 Boilerplate + Protected mode
Added make debug to Makefile
Added the gdb script from the kernel for easy debugging
now makes it to protected mode and shows a green box when done
Added a gdt (of course)
2025-07-30 17:17:12 -04:00

5 lines
109 B
Bash
Executable file

#!/bin/bash
i686-elf-gdb build/ukern.elf \
-ex "target remote localhost:1234" \
-ex "break start" \