5 lines
310 B
Z80 Assembly
5 lines
310 B
Z80 Assembly
ld a,<MyString ; < represents the low byte of the address. Some assemblers use LOW() with the label in the parentheses.
|
|
ld (PointerVariable),a
|
|
ld a,>MyString ; > represents the high byte of the address. Some assemblers use HIGH() with the label in the parentheses.
|
|
ld (PointerVariable+1),a
|