83Plus:BCALLs:5089

From WikiTI
Jump to: navigation, search

Synopsis

Official Name: GetBCOffsetIX

BCALL Address: 5089

Gets the byte at a specific offset from IX.

Inputs

  • IX: base pointer
  • BC: offset from IX

Outputs

  • A: (IX+BC)

Destroys

  • None

Comments

Full code of this routine:

push ix
add ix,bc
ld a,(ix+0)
pop ix
ret