Re: LZ-Adv: Is it possible to write to .db's?
[Prev][Next][Index][Thread]
Re: LZ-Adv: Is it possible to write to .db's?
.db stand for define byte, I believe. You can address it most easily by
using a label so that tasm does it for you.
An example
Test:
.db "This is a test",0
That stores a zero terminated string with This is a test in pure ascii
characters directly to that spot in your program. It is easier to refer
to the beginning address of this as Test so that you don't have to
caclulate the offset.
On Sat, 19 Oct 1996, Mark D Lippmann wrote:
> How would you go about addressing these? An example would be most
> appreciated.
>
> Thanks.
>
> .\\ark
>
References: