In a message dated 9/2/99 9:38:56 PM Eastern Daylight Time, KidFedX@aol.com writes: > Can I store labels in .db's? if not, can I use dw? Here's a visual of what > I'm trying to say: > > mixed: > .db lab1,lab2,lab3,0 > > Is there a way that I could accomplish this? I want to be able to jump to > the labels using "jp (hl)" Thanks in advance. .dw, since labels are 2 bytes .dw lab1,lab2,lab3 ;etc