diff --git a/.gitignore b/.gitignore index f53f951..b237ebb 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,10 @@ *.opendb *.db* *.*db* +*.pdb +*.tlog +*.obj x86_32 image -x64 -.vs \ No newline at end of file +.vs +*.vbs \ No newline at end of file diff --git a/debug.vbs b/debug.vbs index 08c72ee..bc56faa 100644 --- a/debug.vbs +++ b/debug.vbs @@ -9,7 +9,7 @@ ' Modify these variables as needed QEMU_PATH = "C:\Program Files\qemu\" ' You can add something like "-S -gdb tcp:127.0.0.1:1234" if you plan to use gdb to debug -QEMU_OPTS = "-net none -monitor none -parallel none" +QEMU_OPTS = "-net none -vga std -display sdl -serial file:qemu.log -parallel none" ' Set to True if you need to download a file that might be cached locally NO_CACHE = False diff --git a/makefile b/makefile index 9e8239c..39daf91 100755 --- a/makefile +++ b/makefile @@ -144,7 +144,7 @@ else @rm -f $*.elf endif -%.o: %.c +%.o: src/%.c @echo [CC] $(notdir $@) @$(CC) $(CFLAGS) -ffreestanding -c $<