Im using NASM
I'd like to compare the first character of a string in assembly to see if its blank.
mov byte [NAME], 40
lea dx, [NAME]
mov ah, 0ah
int 21h
cmp [NAME],""
je somewhere
This doesnt work.. any advice?