My assembly code for printing string works on QEMU, but not on real hardwares

71 Views Asked by At

I want to make an OS, but it works only in a way, Cosmos C# make me a bunch of errors for only an iso, where is the error here?

[bits 16]
[org 0x7c00]

start:
    mov si, msg
    call printer
    jmp $

printer:
    mov ah, 0x0E
.prntloop:
    lodsb
    or al,al
    jz .done
    int 10h
    jmp .prntloop
.done:
    ret

msg db "Hello World!", 0

times 510-($-$$) db 0
dw 0xaa55

I'm using NASM as a compiler. Thanks.

I've tried this on my real hardware, such as an laptop, the thing that happens when booted finally is that teleports cursor and then casually beeps

0

There are 0 best solutions below