Skip to navigation

Elite on the BBC Micro and NES

Market: TT160

[BBC Micro disc version, Docked]

Name: TT160 [Show more] Type: Subroutine Category: Market Summary: Print "t" (for tonne) and a space
Context: See this subroutine in context in the source code References: This subroutine is called as follows: * TT152 calls TT160
.TT160 LDA #'t' \ Load a "t" character into A JSR TT26 \ Print the character, using TT216 so that it doesn't \ change the character case BCC TT162 \ Jump to TT162 to print a space and return from the \ subroutine using a tail call (this BCC is effectively \ a JMP as the C flag is cleared by TT26)