What’s the difference between equ and db in NASM?
The first is equate, similar to C’s: #define len 2 in that it doesn’t actually allocate any space in the final code, it simply sets the len symbol to be equal to 2. Then, when you use len later on in your source code, it’s the same as if you’re using the constant 2. The … Read more