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

Re: byte specifiers



The main reason for byte specifiers is so that you can put a single
byte specifier into a variable:
	(DEFCONSTANT %TCBAZ (BYTE 3 17))
	... (LDB %TCBAZ X) ...
instead of having to do this:
	(DEFCONSTANT %TCBAZ-SIZE 3)
	(DEFCONSTANT %TCBAZ-POS 17)
	... (LDB %TCBAZ-SIZE %TCBAZ-POS X) ...
--Guy