Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/synthead/timex-datalink-toebes-tutorials
Toebes' WristApp tutorial sources for the Timex Datalink
https://github.com/synthead/timex-datalink-toebes-tutorials
6800 6805 app assembly crt data data-link datalink link timex watch wrist wristapp
Last synced: 3 days ago
JSON representation
Toebes' WristApp tutorial sources for the Timex Datalink
- Host: GitHub
- URL: https://github.com/synthead/timex-datalink-toebes-tutorials
- Owner: synthead
- Created: 2023-07-12T18:57:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-16T11:42:40.000Z (over 1 year ago)
- Last Synced: 2023-07-16T12:37:58.196Z (over 1 year ago)
- Topics: 6800, 6805, app, assembly, crt, data, data-link, datalink, link, timex, watch, wrist, wristapp
- Language: Assembly
- Homepage: https://www.toebes.com/Datalink
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://www.toebes.com/Datalink) 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](https://www.toebes.com/Datalink/wristapps.html). For your convenience, here's
[Toebes' assembler wrapped in Docker with Wine](https://github.com/synthead/timex-datalink-wristapp-assembler) 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:
```vimrc
:syntax=asm
```To make Vim set the syntax to "asm" automatically when ZSM files are opened or created, add this to your `.vimrc`:
```vimrc
au BufRead,BufNewFile *.zsm set syntax=asm
```