;-----------------------------------------------------------------------------; ; WRITE_STRING(DS:SI Text) ; ;-----------------------------------------------------------------------------; ; Writes string from DS:SI until character #0 is met ; Write_String: mov ah, 0xE xor bh, bh mov bl, 0x7 .nextchar lodsb or al,al jz .return int 10h jmp .nextchar .return ret
You need to create an account or log in to post comments to this site.