This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 0A | |
| 1 49E Jump to 49 | |
| 2 0A | |
| 3 0A | |
| 4 1A Used to ADD 1 | |
| 5 48A Code for ascii zero | |
| 6 0A | |
| 7 0A | |
| 8 0A | |
| 9 0A |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SIMPL - A Serial Interpreted Minimal Programming Language | |
| // Inspired by Txtzyme - by Ward Cunningham | |
| // This version runs on Maker Uno with speaker on Digital 8 | |
| // SIMPL allows new words to be defined by preceding them with colon : (Like Forth) | |
| // New words use CAPITALS - so 26 words are possible in the vocabulary | |
| // Words A-F have been predefined as musical tones - but you can write over them | |
| // A word can be a maximum of 48 characters long | |
| // Type ? to get a list off all defined words | |
| #define bufRead(addr) (*(unsigned char *)(addr)) |
OlderNewer