I have reserved 2 bytes for a variable in NASM assembly,then what should be the type specifier when I move this variable to a ax/bx/cx/dx register.
var resb 2
mov rax,type_specifier[var]
Should the type specifier be "word" or simply "byte" ?
Also, how shall I move a 3 byte variable into a 4 byte register(ebx) ?