83Plus:BCALLs:4003

From WikiTI
Revision as of 10:03, 21 September 2005 by FloppusMaximus (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Synopsis

Official Name: FontHook

BCALL Address: 4003

Calls the routine currently set as the font hook.

Inputs

  • Register values to pass to the font hook

Outputs

  • If the hook is invalid, it is disabled, and all registers and flags are preserved.
  • Otherwise, the hook is called, and all register values upon exiting the hook are preserved and returned.

Destroyed

  • All registers except (sometimes) HL and B
  • As with all hooks, you must assume everything in RAM may be destroyed, but remember that any side effects are intentional.

Comments

This routine does not check that the hook is enabled. You must test this yourself, e.g.

    bit fontHookActive,(iy+fontHookFlag)
    jr z,SkipFontHook
    B_CALL _FontHook
SkipFontHook: