This code appears in the following versions (click to see it in the source code):
Code variations between these versions are shown below.
.TT214Name: TT214 Type: Subroutine Category: Keyboard Summary: Ask a question with a "Y/N?" prompt and return the response
Arguments: A The text token to print before the "Y/N?" prompt
Returns: C flag Set if the response was "yes", clear otherwise
In the cassette version, there's an extra space before the "Y/N?" prompt in the Buy Cargo and Sell Cargo screens compared to the other versions.
This variation is blank in the Disc (docked) version.
Tap on a block to expand it, and tap it again to revert.
.TT221 JSR TT27 \ Print the text token in A
JSR TT217 \ Scan the keyboard until a key is pressed, and return \ the key's ASCII code in A and X ORA #%00100000 \ Set bit 5 in the value of the key pressed, which \ converts it to lower case CMP #'y' \ If "y" was pressed, jump to TT218 BEQ TT218 LDA #'n' \ Otherwise jump to TT26 to print "n" and return from JMP TT26 \ the subroutine using a tail call (so all other \ responses apart from "y" indicate a no) .TT218 JSR TT26 \ Print the character in A, i.e. print "y" SEC \ Set the C flag to indicate a "yes" response RTS \ Return from the subroutine