I’m a beginner in Assembly language. I want to know the difference between a declaration enclosed with ‘ ‘ and without it.
For example,
variable1 db ‘0’
variable2 db 0
I know that the one with ” is when printed, it will show what’s inside the ”.
Thanks! 🙂
With single quotes it’s an ASCII character, without quotes it’s just an integer value: