--- title: "Notes" id: 55200 type: "computer_media" slug: "notes" url: "http://localhost/computer_media/notes/" markdown_url: "http://localhost/computer_media/notes.md" published_at: "2024-06-20T11:49:58+00:00" modified_at: "2026-03-30T21:44:19+00:00" author: "David Anderson" featured_image: url: "http://localhost/wp-content/uploads/2019/02/20230809-041332.jpg" excerpt: "A user-group tape header program displays club guidelines on copyright, compatibility, and error-fixing — a candid snapshot of early hobbyist software sharing practices." category: - name: "Archived Media" slug: "archived-media" taxonomy: "category" url: "http://localhost/category/archived-media/" post_tag: - name: "Downloadable" slug: "downloadable" taxonomy: "post_tag" url: "http://localhost/tag/downloadable/" - name: "Long Island Sinclair Timex Group" slug: "long-island-sinclair-timex-group" taxonomy: "post_tag" url: "http://localhost/tag/long-island-sinclair-timex-group/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" model: - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" media_contents: - id: 55220 title: "Long Island Sinclair Timex (LIST) User Group Library Tape #7" type: "computer_media" url: "http://localhost/computer_media/long-island-sinclair-timex-list-user-group-library-tape-7/" media_type: "Program" download_url: "https://archive.org/download/timex-sinclair-software-archive/Notes%20%28198x%29%28TS2068%29%28US%29%28Program%29.zip" mediadate: "198x" --- # Notes Notes from the Long Island Sinclair Timex User Group tape librarian about the contents of the tape. > NOTES ON PRECEDING TAPE > > JUST A FEW NOTES ON THE TAPE > > These programs are supplied by our club members and also other user groups. Please do not disseminate them to any other people. > > We have tried to avoid any copywrited material. If any have slipped in inadvertantly we apologize. > > If a program does not load in TS mode try Spectrum. > > If any program has errors, try to fix it and resubmit it to us for re-issue on the next tape. > > Enjoy yourselves and keep hacking *** ## Program Analysis ### Program Structure The program is entirely linear, consisting of a REM comment, five PRINT statements, a STOP, and a SAVE. There is no branching, looping, input handling, or variable use of any kind. Execution flows from line 10 through line 75, where it halts; line 80 is only reached if the user manually continues or the program is run from line 80 directly. | Line | Purpose | | --- | --- | | 10 | REM label describing the program’s role | | 20–70 | Sequential PRINT statements outputting tape notes | | 75 | STOP — halts normal execution | | 80 | SAVE “NOTES” — writes the program to tape | ### Notable Techniques No screen formatting is used — there are no `CLS`, `AT`, `INK`, or `PAPER` commands. Text simply scrolls down the screen as each `PRINT` executes, relying on the interpreter’s default behavior. Long strings in lines 30, 40, 50, and 60 will word-wrap automatically based on the display width. Placing `STOP` at line 75 before the `SAVE` at line 80 is a common authoring pattern: the `SAVE` line is present in the listing for the author’s use when mastering the tape, but normal program execution never reaches it. ### Bugs and Anomalies Several typographical errors appear within the string literals and would be displayed verbatim to the user: - Line 40: `"triedto"` — missing space between “tried” and “to” - Line 40: `"copywrited"` — incorrect spelling; should be “copyrighted” - Line 40: `"inadvertantly"` — misspelling of “inadvertently” These errors are entirely within string literals and have no effect on program execution, but they would appear on screen exactly as written. ### TS/Spectrum Compatibility Note Line 50 explicitly references both “TS mode” and “Spectrum,” confirming this program was distributed on a dual-compatibility club tape intended for both Timex Sinclair and Spectrum users. The advice to try Spectrum mode as a fallback reflects a real compatibility concern with certain programs that relied on Spectrum-specific ROM behavior not replicated in TS mode. ## Source Code ``` 10 REM NOTES ON PRECEDING TAPE 20 PRINT "JUST A FEW NOTES ON THE TAPE" 30 PRINT "These programs are supplied by our club members and also other user groups.Please do not disseminate them to any other people." 40 PRINT "We have triedto avoid any copywrited material.If any have slipped in inadvertantly we apologize." 50 PRINT "If a program does not load in TS mode try Spectrum." 60 PRINT "If any program has errors,try to fix it and resubmit it to us for re-issue on the next tape." 70 PRINT "Enjoy yourselves and keep hacking" 75 STOP 80 SAVE "NOTES" ```