我用汇编(NASM 语法)编写了一个简单的引导加载程序,但是当我在 QEMU 中运行它时,换行符显示如下:
这是我的代码:
有没有办法阻止0Ah
向前推进线路?
.loop_top:
mov si, text_string ; Put string position into SI
call print_string ; Call our string-printing routine
loop .loop_top
jmp $ ; Jump here - infinite loop!
text_string db "This is my cool new OS!", 0Ah, 0