--- title: "Scrolling the 2068" type: "article" slug: "scrolling-2068" url: "http://localhost/article/scrolling-2068/" markdown_url: "http://localhost/article/scrolling-2068.md" published_at: "2022-10-07T12:22:37+00:00" modified_at: "2026-08-01T12:22:59+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "The SCROLL operation in the 1000 can be obtained in the 2068 by: POKE 23692,m Try using m=1 and m=2 to see what the difference is. m=1 will scroll 1 line at a time m=2 will scroll the whole screen until the end of listing 5 LET m=2 10 FOR n=1 TO 100 20 PRINT…" category: - name: "CATS Newsletter" slug: "cats-newsletter" taxonomy: "category" url: "http://localhost/category/periodicals/cats-newsletter/" post_tag: - name: "Best of Timex/Sinclair 2068 Articles and Documents" slug: "ts2068best" taxonomy: "post_tag" url: "http://localhost/tag/ts2068best/" - 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/" publication_r: id: 35941 title: "CATS Newsletter" type: "periodical" url: "http://localhost/periodical/cats-newsletter/" volume: "2" issue: "12" issues_articles: - id: 39599 title: "CATS v2 n12" type: "issue" url: "http://localhost/issue/cats-v2-n12/" pages: "16" pubdate: "March 1985" archive_link: false --- # Scrolling the 2068 The SCROLL operation in the 1000 can be obtained in the 2068 by: ``` POKE 23692,m ``` Try using m=1 and m=2 to see what the difference is. - m=1 will scroll 1 line at a time - m=2 will scroll the whole screen until the end of listing ``` 5 LET m=2 10 FOR n=1 TO 100 20 PRINT n 30 POKE 23692,m 40 NEXT n ```