assembly

what does the assembly instruction 'db' actually do?


I'm a bit confused as to what the asm instruction db actually does. I've read that it defines a byte, but what does that actually mean? Does it move the value into a certain place in memory, or does it predefine a value before the code is assembled?


Solution

  • It literally places that byte right there in the executable.