Goto Statements

From Sierra Wiki
Revision as of 15:05, 29 April 2025 by Andrew Branscom (talk | contribs)
Jump to navigationJump to search


Goto Statements
By [[]]



Introduction

This can be accomplished with inline assembly code. Verbatim from the 'Inline Assembly' page in the SCI Studio Help File:

Code:
// the inline assembly is quite versatile. Here's a crafty example:
(if(something)
  (asm jmp _a_goto_label)
)
(asm _a_goto_label: )

Note that the inline assembly code functionality is implemented in SCI Studio, but not in SCI Companion.


References



Related Links

  •