; Stores a 16-bit register into the address stored in HL ; \1 The register to store MACRO STORE16 ld [hl], HIGH(\1) inc hl ld [hl], LOW(\1) ENDM