This code appears in the following versions (click to see it in the source code):
Code variations between these versions are shown below.
.MV5 LDA INWK+31 \ Fetch the ship's exploding/killed state from byte #31Name: MVEIT (Part 9 of 9) Type: Subroutine Category: Moving Summary: Move current ship: Redraw on scanner, if it hasn't been destroyed
This routine has multiple stages. This stage does the following: * If the ship is exploding or being removed, hide it on the scanner * Otherwise redraw the ship on the scanner, now that it's been moved
LDA INWK+31 \ Set bit 4 to keep the ship visible on the scanner ORA #%00010000 STA INWK+31
JMP SCAN \ Display the ship on the scanner, returning from the \ subroutine using a tail call
.MVD1 LDA INWK+31 \ Clear bit 4 to hide the ship on the scanner AND #%11101111 STA INWK+31 RTS \ Return from the subroutine