Im trying to redefine how the characters will look (in this case according to the Hebrew alphabet). In this segment I wanted to change 'k' (ascii 6bh) to resemble this ל.
.model small .stack 200h;data segment containing all of the variables used in the program .data Lamed db 30h, 30h, 30h, 3fh, 3h, 3h, 3h, 6h, 0ch, 18h, 30h .code Start: mov ax, @data
mov es, ax mov ax, 1110h mov bh, 14h mov bl, 1h mov cx, 1h mov dx, 6bh push bp mov bp, offset Lamed int 10h pop bp mov ah, 02h mov dl, 6bh int 21h mov ax, 4c00h int 21h end Start
Also if there is a predefined hebrew alphabet that would help.