--- title: "Gesso 2068 Cartridges" type: "article" slug: "gesso-cartridges" url: "http://localhost/article/gesso-cartridges/" markdown_url: "http://localhost/article/gesso-cartridges.md" published_at: "2022-09-14T02:41:54+00:00" modified_at: "2026-07-18T00:59:16+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "Bob Orrfelt has done wonders in his resurrection of the 2068 cartridge. While the programs on the two sample cartridges that I have tried are very simple they do demonstrate the use of the cartridge to store and use programs. Bob will soon, to my understanding, have an EPROM programmer available that will allow the…" category: - name: "The Plotter" slug: "the-plotter" taxonomy: "category" url: "http://localhost/category/periodicals/the-plotter/" post_tag: - name: "Best of Timex/Sinclair 2068 Articles and Documents" slug: "ts2068best" taxonomy: "post_tag" url: "http://localhost/tag/ts2068best/" - name: "Gesso Products" slug: "gesso-products" taxonomy: "post_tag" url: "http://localhost/tag/gesso-products/" - name: "Hardware review" slug: "hardware-review" taxonomy: "post_tag" url: "http://localhost/tag/hardware-review/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" - name: "Type-in program" slug: "type-in-program" taxonomy: "post_tag" url: "http://localhost/tag/type-in-program/" model: - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" indiv: - name: "Dennis Jurries" slug: "dennis-jurries" taxonomy: "indiv" url: "http://localhost/indiv/dennis-jurries/" publication_r: id: 21216 title: "The Plotter" type: "periodical" url: "http://localhost/periodical/the-plotter/" authors: "Dennis Jurries" authors_r: - name: "Dennis Jurries" slug: "dennis-jurries" taxonomy: "indiv" url: "http://localhost/indiv/dennis-jurries/" volume: "3" issue: "3" issues_articles: - id: 39424 title: "The Plotter v3 n3" type: "issue" url: "http://localhost/issue/the-plotter-v3-n3/" pages: "3" archive_link: false companies_articles: - id: 26520 title: "Gesso Products" type: "company" url: "http://localhost/company/gesso-products/" --- # Gesso 2068 Cartridges [Bob Orrfelt](http://localhost/indiv/bob-orrfelt/) has done wonders in his resurrection of the 2068 cartridge. While the programs on the two sample cartridges that I have tried are very simple they do demonstrate the use of the cartridge to store and use programs. Bob will soon, to my understanding, have an EPROM programmer available that will allow the user to load a Basic program into their computer and thus program the EPROM. Loading of a program is as simple as inserting the cartridge into the cartridge port, turning on the computer, turning on the cartridge by throwing a switch, and pressing NEW and ENTER. The program is instantly loaded and running. The switch on the cartridge is very handy if you wish to transfer the EPROM program into RAM and view it. To do this insert the cartridge making sure that it is switched in the off position. Turn on the computer and type in the following programs (you can not enter any program lines with the EPROM is on or the EPROM has been RUN and stopped). ## Source Code ``` 1 FOR n=32768 to 40959 3 OUT 244,16: LET x=PEEK n 5 OUT 244,0: POKE (n+16384),x 7 NEXT n 8 STOP 10 FOR n=49161 TO 57343 20 LET x=PEEK n 25 IF n=49161 THEN PRINT x;: LET n=n+2: GO TO 40 30 IF x=13 THEN PRNIT : LET n=n+2: PRINT PEEK n;: LET n=n+2 34 IF x=14 THEN LET n=n+5 38 IF x<>13 AND x<>14 AND x>5 AND x<>239 AND x<>20 THEN PRINT CHR$ x; 40 NEXT N ```