Prev: 75e8 Up: Map Next: 75fc
75ed: Horizontal platform collision detection for Jetman/Alien.
Used by the routine at 75fc.
Input
HL Address of platform object.
IX Jetman or Alien object.
75ed ld e,$00
75ef push hl
75f0 inc hl A=Platform X position
75f1 ld a,(hl)
75f2 sub (ix+$01) Subtract Jetman/Alien X position
75f5 jp p,$75d1 If positive, Horizontal collision detection
75f8 neg
75fa set 6,e Set bit-6 and then vertical collision detection
Prev: 75e8 Up: Map Next: 75fc