79281017

Date: 2024-12-14 16:42:05
Score: 0.5
Natty:
Report link

Print string terminated by zero (0x00) using int 0x10 bios TTY:

// print string terminated by zero
    lea dx,welcome //<-pointer to string
loop:
    mov bx,dx
    mov al,byte ptr[bx]
    cmp al,0
    jz exit_loop
    inc dx
    mov ah,0x0e
    mov bx,0x04
    int 0x10
    jmp loop
exit_loop:
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kauno Medis