> These do different things. This is an 8-bit load:
>
> > ld hl,op1+1
> > ld (hl),'W'
>
> This is a 16-bit load:
>
> > ld hl, 'W'
> > ld (op1+1),hl
Of course I did know that. But I want to know
if both codes does exactly the same (expected
that hl maybe isn't the same value after execution).
Do they or do they not the same?
Valio