--- title: "BigChar" id: 55001 type: "computer_media" slug: "bigchar" url: "http://localhost/computer_media/bigchar/" markdown_url: "http://localhost/computer_media/bigchar.md" published_at: "2024-06-10T07:03:30+00:00" modified_at: "2026-03-30T21:41:07+00:00" author: "David Anderson" featured_image: url: "http://localhost/wp-content/uploads/2019/02/20230809-041332.jpg" excerpt: "A compact machine code utility that prints the text in a REM statement as large text." 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: "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/" genre: - name: "Demo" slug: "demo" taxonomy: "genre" url: "http://localhost/type/demo/" media_contents: - id: 55021 title: "Long Island Sinclair Timex (LIST) User Group Library Tape #2" type: "computer_media" url: "http://localhost/computer_media/list-lib-2/" media_type: "Program" mediadate: "198x" images: - url: "http://localhost/wp-content/uploads/2024/06/SCR-20260329-qxyy.png" media_type_tags: "Demo" --- This program is a loader and save utility for a machine code routine called BIGCHAR, stored at memory address 64960 and occupying 407 bytes. When run normally, execution jumps to line 30, which calls the machine code at 64960 via RANDOMIZE USR. The routine will print the phrase in the REM on line 36 in large characters. ## Source Code ``` 10 REM BIGCHAR 11 GO TO 30 20 LOAD ""CODE 30 RANDOMIZE USR 64960 36 REM "** L.I.S.T. GROUP **" 39 STOP 40 SAVE "BIGCHAR" LINE 20: SAVE "CHAR"CODE 64960,407 50 STOP ```