83Plus:BCALLs:4159

From WikiTI
Revision as of 18:20, 3 April 2005 by Gambit (Talk | contribs)

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

Synopsis

Official Name: Mov11B

BCALL Address: 4159

Copies an 11 byte memory block from source to destination.

Inputs

  • HL: start of source block
  • DE: start of destination block

Outputs

  • 11 byte block starting at original HL copied to original DE

Destroys

  • BC DE HL

Comments

This B_CALL is similar to all the other MovXB ones out there. For some reason, TI didn't document this one.

Example

Move 11 bytes from OP1 to appBackUpScreen

ld hl,OP1
ld de,appBackUpScreen
B_CALL Mov11B