![]() |
Routines |
Prev: 54795 | Up: Map | Next: 54924 |
Used by the routine at 54924.
|
||||
54897 | ADD IX,BC | IX+=BC. | ||
54899 | LD A,255 | A=255. | ||
54901 | CP (IX+0) | Compare A with *IX+0. | ||
54904 | RET Z | Return if A is equal to 255. | ||
54905 | XOR A | A=0. | ||
54906 | CP (IX+1) | Compare A with *IX+1. | ||
54909 | JR NZ,54897 | Jump to 54897 if A is not equal to 255. | ||
54911 | LD A,(IX+0) | A=*IX+0. | ||
54914 | AND A | Set flags. | ||
54915 | JR Z,54897 | Jump to 54897 if A is equal to A. | ||
54917 | CP 11 | Compare A with 11. | ||
54919 | JR NC,54897 | Jump to 54897 if A is greater than or equal to 11. | ||
54921 | OR %00000001 | Set bit 0. | ||
54923 | RET | Return. |
Prev: 54795 | Up: Map | Next: 54924 |