DB Pseudo-Instruction ....
A DB instruction is available to declare Code bytes 'by hand'. This may be useful for:
Experiments on coding.
Coding by hand possibly missing or wrong encoding in the future.
Useful for Disassembler when holding weird code ( cryptic Code, Data in Code,...)
To reserve room in code for writable Code.
The syntax for DB is, for example:
DB 01 025 070
(hexadecimal required).
~~~~~~~