found code where guy made it had typed this!
add al,'A'-'9'-01h
and tasm change it to
add al, 7
just wondering how "add al,'A'-'9'-01h" can become "add al, 7"!
it's tasm source btw!
'A' = (ascii code for letter A) 65
'9' = 57
65 - 57 - 1 = 7
oh...lol. to easy to figure out! :toothy :U