From f9e2c1b17397e831781e9587998af23fc133688d Mon Sep 17 00:00:00 2001 From: blondie7575 Date: Sun, 24 Dec 2017 10:46:51 -0700 Subject: [PATCH] Fixed a misleading Applesoft example --- Documentation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Documentation.md b/Documentation.md index aa5ae20..e2e64e0 100644 --- a/Documentation.md +++ b/Documentation.md @@ -207,8 +207,9 @@ Here's a sample Applesoft run loop using these techniques: 80 &PDACT 90 &GET(A%) 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 + 1000 &EXIT You can omit &PDACT if you have no desire to support the mouse.