アセンブリ (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