On <Event> |
Previous Next |
On <Event> GoSub <LineLabel>
|
Part
|
Description
|
<Event>
|
Required. Valid Event Types are:
|
<LineLabel>
|
Required. The line label where the event will jump to when enabled.
|
On VBlank GoSuB MyVblank
Enable VBLANK
End
MyVblank:
a++
Locate 1,1: Print a
Return
|