Fixed a misleading Applesoft example

This commit is contained in:
blondie7575
2017-12-24 10:46:51 -07:00
parent d4e09ded5d
commit f9e2c1b173

View File

@@ -207,8 +207,9 @@ Here's a sample Applesoft run loop using these techniques:
80 &PDACT 80 &PDACT
90 &GET(A%) 90 &GET(A%)
99 REM 113 is the ASCII code for 'q' (to quit) 99 REM 113 is the ASCII code for 'q' (to quit)
100 IF A% = 113 THEN END 100 IF A% = 113 THEN GOTO 1000
110 GOTO 80 110 GOTO 80
1000 &EXIT
You can omit &PDACT if you have no desire to support the mouse. You can omit &PDACT if you have no desire to support the mouse.