| alien | Routines |
| Prev: 35290 | Up: Map | Next: 35338 |
|
Menu-row dispatch for room modes 0 and 1: re-dispatches the action key on the cursor ROW (33683) through the second half of the same word table — base $840C for mode 0 (the orders screen) or $8430 for mode 1 (the room view; see the row list at the RoomDispatchTable header).
|
||||
| 35314 | CALL 45753 | A = room mode (0 or 1 here) | ||
| 35317 | LD HL,33804 | mode-0 row-handler base | ||
| 35320 | LD DE,36 | |||
| 35323 | AND A | |||
| 35324 | JR Z,35327 | |||
| 35326 | ADD HL,DE | mode 1: the room-view row table | ||
| 35327 | LD A,(33683) | cursor row | ||
| 35330 | LD E,A | |||
| 35331 | ADD HL,DE | |||
| 35332 | ADD HL,DE | base + row*2 | ||
| 35333 | LD A,(HL) | |||
| 35334 | INC HL | |||
| 35335 | LD H,(HL) | |||
| 35336 | LD L,A | |||
| 35337 | JP (HL) | jump to the row's handler | ||
| Prev: 35290 | Up: Map | Next: 35338 |