You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
317 B

3 years ago
  1. ; Stores a 16-bit value into the address stored in HL
  2. ; \1 The value to store (immediate or register)
  3. MACRO STORE16
  4. ld [hl], HIGH(\1)
  5. inc hl
  6. ld [hl], LOW(\1)
  7. ENDM
  8. ; Stores an 8-bit value into memory
  9. ; \1 Write address
  10. ; \2 8-bit value
  11. MACRO SET8
  12. ld h, HIGH(\1)
  13. ld l, LOW(\1)
  14. ld [hl], \2
  15. ENDM