At 11:58 AM 2/13/97 -1000, you wrote: >I was wondering if there is a short way of creating a list of >RETLW instructions instead of typing them all out using MPASM. >eg >Table retlw 0h > retlw 1h > retlw 2h > ... > retlw 64h >to perhaps.. > >Table Retlw 0,1,2,3,4 etc Yep, you can do it like this: dt 1,2,3,4,5 dt 6,7,8,9,10 is the same as: retlw 1 retlw 2 retlw 3 retlw 4 retlw 5 retlw 6 retlw 7 retlw 8 retlw 9 retlw 10 you can put as many on a line as you like. I think "dt" stands for "data table" or something. -Bob