Fix bochs debugging argument.

This commit is contained in:
Drew Galbraith 2025-05-07 01:41:16 -07:00
parent 0dfa6008ec
commit fff3d8927c
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ sudo sh ${DIR}/build_image.sh ${BUILD_DIR}/disk.img
BOCHS_ARGS=
if [[ $1 == "debug" ]]; then
BOCHS_ARGS+="--dbg"
BOCHS_ARGS+="-dbg"
fi
# TODO Make this portable, build bochs as a part of toolchain?