At 12:25 AM 5/12/98 -0400, you wrote: > > That looked screwy, so here it is again: > > add a,h ;4 t-states > ld h,a ;4 t-states > jr nc,skip ;7 or 12 t-states > inc l ;4 t-states >skip: > And I think it's still backwards, shouldn't it be this? add a,l ;4 t-states ld l,a ;4 t-states jr nc,skip ;7 or 12 t-states inc h ;4 t-states skip: --Joshua