Routines
Prev:
29414
Up:
Map
Next:
29446
29441: Read two bytes after
HL
position into
C
and
B
respectively, advancing
HL
before both reads
Used by the routines at
28683
,
28747
,
28841
,
28882
,
28960
,
29032
,
29089
,
29150
,
29184
,
29205
,
29225
,
29291
,
29356
and
29375
.
Input
HL
Pointer to current position in data (before reads)
Output
B
Second byte AFTER input
HL
position
C
First byte AFTER input
HL
position
HL
Two bytes after input
HL
position
29441
INC HL
Advance
HL
29442
LD C,(HL)
Load byte into
C
29443
INC HL
Advance
HL
29444
LD B,(HL)
Load byte into
B
29445
RET
Return
Prev:
29414
Up:
Map
Next:
29446