| Alien (BUGFIX 1.7) | Routines |
| Prev: 39171 | Up: Map | Next: 39228 |
|
(HL) = the tracker's NearRoomList entry: when it reads 255 (motion detected next door), beep on every 8th pass.
Used by the routine at 39171.
|
||||
| 39213 | LD A,(HL) | motion detected (entry = 255)? | ||
| 39214 | CP 255 | |||
| 39216 | RET NZ | no: silence | ||
| 39217 | LD HL,38378 | yes: pace the alert — | ||
| 39220 | INC (HL) | a ROM beep every 8th pass | ||
| 39221 | LD A,(HL) | |||
| 39222 | AND 7 | |||
| 39224 | CALL Z,39242 | |||
| 39227 | RET | |||
| Prev: 39171 | Up: Map | Next: 39228 |