Skip to content

synthead/timex-datalink-toebes-tutorials

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 

Repository files navigation

Toebes' WristApp tutorial sources for the Timex Datalink

This repository contains the source code for the tutorials and header files from John A. Toebes, VIII's Datalink Wristapp Developer's Resource website! You can use the identical code examples in this repository while you follow his excellent tutorials.

To assemble WristApps for the Timex Datalink 150 and 150s, please use Toebes' assembler. For your convenience, here's Toebes' assembler wrapped in Docker with Wine to make it easier to use on the CLI in a platform-agnostic way.

Highlighting in Vim

To make ZSM files be highlighted correctly in Vim, set the syntax to "asm", like so:

:syntax=asm

To make Vim set the syntax to "asm" automatically when ZSM files are opened or created, add this to your .vimrc:

au BufRead,BufNewFile *.zsm set syntax=asm