I'm using emu8086 to learn Assembly language. I have a question that says: Convert the following to code snippet to Assembly Language code: a = 0
Do i initialize the variable a as the decimal ascii code 48(which has a character value of 0)?
a db 48
Or do i initialize the variable a as the decimal ascii code 0 itself(which has a character value of NUL)?
a db 0