Home
CBM
  ASCII-X
  BASIC
    Disk Commands
    Enter RUN mode
    Program Format
    Secret Variables
    Variable Format
    Expressions
    Keywords
      (divide)
      (equal)
      (less)
      (minus)
      (more)
      (multiply)
      (plus)
      (power)
      Abs
      And
      Append
      Asc
      Atn
      Auto
      Backup
      Bank
      Begin
      Bend
      Bload
      Boot
      Box
      Bsave
      Bump
      Catalog
      Char
      Chr
      Circle
      Close
      Clr
      Cmd
      Collect
      Collision
      Color
      Concat
      Cont
      Copy
      Cos
      Data
      Dclear
      Dclose
      Dec
      Def
      Delete
      Dim
      Directory
      Dispose
      Dload
      Do
      Dopen
      Draw
      Ds
      Ds string
      Dsave
      Dverify
      El
      Else
      End
      Envelope
      Er
      Err
      Exit
      Exp
      Fast
      Fetch
      Filter
      Fn
      For
      Fre
      Get
      Get num
      Getkey
      Go
      Gosub
      Goto
      Graphic
      Gshape
      Header
      Help
      Hex
      If
      Input
      Input num
      Instr
      Int
      Joy
      Key
      Left
      Len
      Let
      List
      Load
      Locate
      Log
      Loop
      Mid
      Monitor
      Movspr
      New
      Next
      Not
      Off
      On
      Open
      Or
      Paint
      Peek
      Pen
      Pi
      Play
      Pointer
      Poke
      Pos
      Pot
      Print
      Print num
      Pudef
      Quit
      Rclr
      Rdot
      Read
      Record
      Rem
      Rename
      Renumber
      Restore
      Resume
      Return
      Rgr
      Right
      Rlum
      Rnd
      Rreg
      Rspcolor
      Rsppos
      Rsprite
      Run
      Rwindow
      Save
      Scale
      Scnclr
      Scratch
      Sgn
      Sin
      Sleep
      Slow
      Sound
      Spc
      Sprcolor
      Sprdef
      Sprite
      Sprsav
      Sqr
      Sshape
      St
      Stash
      Step
      Stop
      Str
      Swap
      Sys
      Tab
      Tan
      Tempo
      Then
      Ti
      Ti string
      To
      Trap
      Troff
      Tron
      Until
      Using
      Usr
      Val
      Verify
      Vol
      Wait
      While
      Width
      Window
      Xor
    Syntax
    Tokens
  C128
  D64plus
  Disk
  Escape Codes
  Hardware
  PCxface
  PETSCII
  Pet2asc
Futurama
IBM PC-AT
Contact
Games
Glossary
Hall of fame
Hall of shame
Miscellaneous
Privacy policy
Programming
Twisty puzzles
KeywordAbbreviationToken (hex)Version(s)Classification
GOTOG{Shift+O}891.0 to 7.0Command and Statement
GO TOnone CB [20] A4 2.0 to 7.0Command and Statement 

 
Syntax 
[ ON selector ] GOTO lineNumber [ , lineNumber ] ...
 ~ or ~
GO TO lineNumber [ , lineNumber ] ...
 
ParametersTypeLegal Value(s)Default ValueNote(s)
selectorUnsigned Byte0 ~ 2551
lineNumberUnsigned Integer0 ~ 63999If choosen, it must exist.  Must be a literal number.
 
 
 
Purpose 
Program flow control.  Transfer program execution to the start of a (typically other) program line.

 
 
Remarks 
The original GOTO (without a space) and the newer GO TO (with one or more spaces) are suppose to be indentical / synomyous.  However, a SYNTAX ERROR will be generated if the ON preposition is used with the (newer) GO TO version.  Fail!  Or as I like to say: if it ain't broke, don't fix it.
 
GOTO can be used for unconditional program flow re-direction.  However it is typically used in conjunction with a decision making process.  The most typical case being the IF/THEN/ELSE construct.  Since some BASIC versions lack ELSE, excpect them to have more instances of pure GOTOs.
 
Although the main (trailing) argument to GOTO, the lineNumber, is simply a number, CBM BASIC does not allow the number to be contained in a variable or calculated from an expression.  Why, why, why?  It seems to make a RENUMBER routine more complex, but the original version(s) of CBM BASIC did not have RENUMBER so the answer must be something else...  You might need to ask Bill Gates!
 
Anyway, a kludgy method around the "no variables, no expressions" restriction is the use of the ON preposition.  When this is present, the selector is evaluated.  If the result is less than 0 (or greater than 255), then an ILLEGAL QUANTITY ERROR is generated.  Otherwise the selector's value (call it N) is used to select the Nth lineNumber in the list.  The default N is 1 (i.e., when no ON preposition exists).  Not all N possibilities need to be entered.  If N is greater than the number of lineNumbers following GOTO, then the GOTO is completely ignored and the statment following it (whether on the same line or the next line) will be executed instead.  If N is less/equal to the count of lineNumbers listed, then Nth one is used.  Not all N values need to have a corresponding lineNumber, but for any N that is actually choosen, its corresponding line number must exist in the program or an UNDEF'D STATEMENT ERROR occurs.  If the Nth lineNumber is "empty" (no number) and is selected, then instead a SYNTAX ERROR message will be generated (all other cases work as described above).  If the Nth lineNumber is "garbage" then everything will run fine when N is > 0 and N < "garbage" entry, but when N = 0 or N >= to the "garbage" entry, you will also get SYNTAX ERROR.
 
Sorry if that seems complex!  Now you know why I call it a kludge.  Some examples are below.  Also it should be noted that ON/GOTO is very similar (and more compact) than the SELECT/CASE of VisualBASIC or SWITCH/CASE of C.  Anyway, it is cleaner and faster than a long chain of IF/THEN/ELSE statements, which would otherwise be needed.
 
If GOTO (or GO TO) is executed in direct mode, the BASIC interpreter will change its internal state from from "direct mode" to "run mode".  While the concept may seem obvious, the details are not well-documented!  See this topic for details.  When this happens, BASIC updates a secret variable (sets it to 128).  It is secret because BASIC provides no way to read the value (except for machine-specific PEEK).
 
Before the examples, I would like to mention (in case it isn't obvious) that GOTO is weird in a few more ways.  For instance, the selector won't allow an Integer like most BASIC statements, only an unsigned byte.  Second the line number(s) is(are) not a normal integer either, but a restricted unsigned integer.  (Normal unsigned integers in BASIC are 0 ~ 65535, but then again, unsigned integers are not normal in BASIC anyway).  Ah, well that has more to due with the rules of line numbers in general than GOTO in particular.  But overall, you have to admit this simple programming concept is riddled with exceptions!
 
Example:
10 GOTO 10 : REM infinite loop, do not RUN!
NEW

READY.
10 INPUT "N"; N
20 ON N GOTO 100, , 300, 400
30 PRINT "INVALID" : GOTO 10
100 PRINT "ONE" : GOTO 10
300 PRINT "THREE" : GOTO 10
RUN
N? 3 (user input)
THREE
N? 5 (user input)
INVALID
N? 0 (user input)
INVALID
N? -1 (user input)
?ILLGAL QUANTITY ERROR IN 20

READY.
RUN
N? 1 (user input)
ONE
N? 2 (user input)
?SYNTAX ERROR IN 20

READY.
RUN
N? 3 (user input)
THREE
N? 4 (user input)
?UNDEF'D STATEMENT ERROR IN 20

READY.
 
I almost forgot!  If the newer GO TO syntax is used, only the 1st lineNumber will ever be used.  This is because there it is no way to specify a selector (always defaults to one).
 
 Compare With 
 
 Contrast With 
 
 See Also 
DO, EL, FORGOIF, ON, TO

© H2Obsession, 2014