; ===========================
; = my first asm programmer
; ===========================
data segment
count db ?
addr dw ?
Input db ?
MaHex_word db 'ABCDEF' ;A=41h
MiHex_word db 'abcdef' ;a=61h
Instring db 'Input Symbol = $';,0dh,0ah
Outstring db 'Output Binary = $';,0dh,0ah
Outcount db 'Out 0 and 1 count = $'
Nextsymbol db 'Next symbol $'
data ends