Minor file updates

This commit is contained in:
Curle 2019-07-21 15:24:41 +01:00
parent 09f4f326f1
commit 65d6129103
3 changed files with 7 additions and 4 deletions

7
.gitignore vendored
View File

@ -7,7 +7,10 @@
*.opendb
*.db*
*.*db*
*.pdb
*.tlog
*.obj
x86_32
image
x64
.vs
.vs
*.vbs

View File

@ -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

View File

@ -144,7 +144,7 @@ else
@rm -f $*.elf
endif
%.o: %.c
%.o: src/%.c
@echo [CC] $(notdir $@)
@$(CC) $(CFLAGS) -ffreestanding -c $<