Re: A83: opcode .db


[Prev][Next][Index][Thread]

Re: A83: opcode .db




.db is just defineing a byte.. it has no opcode of its own..
if you define .db "whatever",0 then it will store the string "whatever" in ascii
code and then a zero at the end..
so the line ".db "whatever",0" would result in this data in the program:
776861746576657200 at the exact location that the .db is...

//Olle


Man in the Moon wrote:
> 
> Could someone please tell me what the op code for .db "(whatever)",0 is. I
> don't mean type it in and compile with tasm but depending on the string, how
> does the hex change?
> 
> From: Chris (Man in the Moon)
> mecad@scv.net


References: