On Wed, 6 Aug 1997, Shane Nelson wrote: > Hi, > > ie) > Instead of having to do this: > > COUNT equ h'7' > ACCA equ h'8' > ;16bit > ACCB equ h'9' > ACCD equ h'a' > > I want to be able to get away with something more like this: > > db = define byte > dw = define word > > db COUNT > dw ACCA > db ACCB > db ACCD > > ----- I think no compiler can do this. However, you can change the value of "d_" statement like: test dw 3 . . movf test, f . . Sunthiti