动手写一个最小的“操作系统”最小的操作系统代码org 07c00h ; 告诉编译器程序加载到7c00处
mov ax, cs
mov ds, ax
mov es, ax
call DispStr ; 调用显示字符串例程
jmp $
2022-06-22