Difference between revisions of "Z80 Routines:Optimized:CpHLDE"

From WikiTI
Jump to: navigation, search
(No difference)

Revision as of 11:06, 28 July 2007


This is a faster/smaller replacement for the typical CpHLDE routine.

Typical routine:

CpHLDE:
  push hl
  or a
  sbc hl,de
  pop hl
  ret

Better routine:

CpHLDE:
  or a
  sbc hl,de
  add hl,de
  ret