83Plus:BCALLs:4159
From WikiTI
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