Re: LF: *READ PLEASE*****!!!! New question about BIN Greyscale FILES **


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

Re: LF: *READ PLEASE*****!!!! New question about BIN Greyscale FILES ****





On Wed, 4 Dec 1996, David Lee wrote:

> 
> ok I don't know 68k ASM but im trying to learn it (arn't we all)
> but here is my question.... what exactly does dc.w do and what does it
> mean.. also are there any variations of that command (like dc.x or somthing?)
> David Lee
> davidlee@itis.com
> 
	If you are familiar with 8088 (IBM) assembler, DC.W does the same
thing that the directive DW does in 8088.  Moreover, all it does is say,
instead of storing an instruction here, store this word.  There is such a
directive for each data length:

	DC.B  	Store Data Byte
	DC.W	Store Data Word
	DC.L	Store Data Long word

	The most common use of these, heretofore, is to store titles:

ProgName
	DC.B 'My Fargo Program',0


References: