diff --git a/Makefile b/Makefile index 46051615..c4d05ea9 100644 --- a/Makefile +++ b/Makefile @@ -67,16 +67,16 @@ qemu: default bochs: default echo "c" > commands - bochs -qf bochsrc.txt -rc commands + bochs -qf tools/bochsrc.txt -rc commands rm commands debug: default echo "c" > commands - bochs -qf debug_bochsrc.txt -rc commands + bochs -qf tools/debug_bochsrc.txt -rc commands rm commands gdb: default - bochs -qf gdb_bochsrc.txt + bochs -qf tools/gdb_bochsrc.txt force_look: true diff --git a/bochsrc.txt b/tools/bochsrc.txt similarity index 100% rename from bochsrc.txt rename to tools/bochsrc.txt diff --git a/debug_bochsrc.txt b/tools/debug_bochsrc.txt similarity index 100% rename from debug_bochsrc.txt rename to tools/debug_bochsrc.txt diff --git a/gdb_bochsrc.txt b/tools/gdb_bochsrc.txt similarity index 100% rename from gdb_bochsrc.txt rename to tools/gdb_bochsrc.txt