Z80 Optimization
From WikiTI
Introduction
Sometimes it is needed some extra speed in ASM or make your game smaller to fit on the calculator.
General
General algorithm improvements and correct use of registers.
Small Tricks
;Instead of: ld a,0 ;Try this: xor a ;disadvantages: changes flags ;or sub a ;disadvantages: changes flags