Routines |
Prev: $11CF | Up: Map | Next: $1294 |
The region identifiers are as follows:
|
||||||||||||||||||||||||||
$126D | CPY #$0E | Is the y-coordinate less than 14? | ||||||||||||||||||||||||
$126F | BCC $1276 | Branch if so. | ||||||||||||||||||||||||
$1271 | LDA #$02 | Return with A=2 when Y>=14. | ||||||||||||||||||||||||
$1273 | JMP $1293 | |||||||||||||||||||||||||
$1276 | CPY #$07 | Is the y-coordinate less than 7? | ||||||||||||||||||||||||
$1278 | BCC $1288 | Branch if so. | ||||||||||||||||||||||||
$127A | CPX #$27 | Is the x-coordinate less than 39? | ||||||||||||||||||||||||
$127C | BCC $1283 | Branch if so. | ||||||||||||||||||||||||
$127E | LDA #$03 | Return with A=3 when 7<=Y<14 and X>=39. | ||||||||||||||||||||||||
$1280 | JMP $1293 | |||||||||||||||||||||||||
$1283 | LDA #$01 | Return with A=1 when 7<=Y<14 and X<39. | ||||||||||||||||||||||||
$1285 | JMP $1293 | |||||||||||||||||||||||||
$1288 | CPX #$3A | Is the x-coordinate less than 58? | ||||||||||||||||||||||||
$128A | BCC $1291 | Branch if so. | ||||||||||||||||||||||||
$128C | LDA #$04 | Return with A=4 when Y<7 and X>=58. | ||||||||||||||||||||||||
$128E | JMP $1293 | |||||||||||||||||||||||||
$1291 | LDA #$00 | Return with A=0 when Y<7 and X<58. | ||||||||||||||||||||||||
$1293 | RTS |
Prev: $11CF | Up: Map | Next: $1294 |