STUDY/OS개발 클론코딩
10장 삽질 목록
Chap#10 삽질 run_qemu.sh 이전에 i8086 architecture debugging을 위해 qemu를 i386으로 실행시킴 qemu를 i386으로 실행시키고 IA-32e Mode 지원이 왜 안되지 하면서 1시간 삽질…. O_DEBUG="no" while getopts d opts; do case $opts in d) O_DEBUG="yes" ;; esac done if [ "${O_DEBUG}" = "yes" ]; then qemu-system-x86_64 -L . -m 64 -fda /mnt/d/home/study/mint64os/Disk.img -rtc base=localtime -M pc -s -S #qemu-system-i386 -L . -m 64 -fda /mnt/d/home/s..
2022. 9. 18. 08:22