# asm_projects **Repository Path**: kelzjl/asm_projects ## Basic Information - **Project Name**: asm_projects - **Description**: No description available - **Primary Language**: Assembly - **License**: BSD-4-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-01 - **Last Updated**: 2024-09-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bochs ```shell sudo apt install bochs gdb ``` ## 启动 bochs ```shell bochs -q -f bochsrc.bxrc ``` ## bochsrc.bxrc 参考: https://github.com/ellipse/linux-0.11-deb.git # qemu ```shell doas pacman -Sy install qemu-base qemu-desktop qemu-all ``` ## 启动 qemu ```shell qemu-system-x86_64 -cdrom boot.iso -m 256M -boot d -serial stdio ``` ## 启动 bochs 和 qemu 同时运行 ```shell bochs -q -f bochsrc.bxrc -rc qemu.bxrc ```