diff options
author | Marvin Borner | 2020-08-09 23:42:57 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-09 23:42:57 +0200 |
commit | f42aa2d995704c748c370d3e7b3684512361bc09 (patch) | |
tree | 2abf158ad5cc128d083789f9aea1145f0cfe0e6d /run | |
parent | f163a5d5f6802f63092229f0f9326e5fb44b7908 (diff) |
Some build process changes
Diffstat (limited to 'run')
-rwxr-xr-x | run | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -82,7 +82,7 @@ make_build() { mkdir -p build/ rm -rf build/* - echo "Building..." + printf "\nBuilding...\n" make # Create disk image @@ -105,11 +105,11 @@ make_build() { } make_test() { - qemu_with_flags -hdb build/disk.img + qemu_with_flags -drive file=build/disk.img,format=raw,index=1,media=disk } make_debug() { - qemu_with_flags -hdb build/disk.img -s -S + qemu_with_flags -drive file=build/disk.img,format=raw,index=1,media=disk -s -S } make_disasm() { |