I get this error. "Instruction operands must be the same size
I believe it has something to do with the size of the variable "choice"
.data
choice BYTE ?
mov choice, eax ; error on this line
call Crlf
ret
DisplayMenu ENDP
DisplayOpr PROC USES edx
mov eax, choice ; error on this line
What do I need to do to fix this error?