Goto Statements

From SCI Wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.