Tree @0.4 (Download .tar.gz)
SixtyPical
SixtyPical is a very low-level programming language, similar to 6502 assembly, with static analysis through abstract interpretation.
In practice, this means it catches things like
- you forgot to clear carry before adding something to the accumulator
- a subroutine that you call trashes a register you thought was preserved
and suchlike.
It is a work in progress, currently at the proof-of-concept stage.
The current released version of SixtyPical is 0.4. The current development version of SixtyPical, unreleased as of this writing, is 0.5-PRE.
Documentation
- Design Goals — coming soon.
- SixtyPical specification
- SixtyPical history
- Literate test suite for SixtyPical syntax
- Literate test suite for SixtyPical execution
- Literate test suite for SixtyPical analysis
- Literate test suite for SixtyPical compilation
- 6502 Opcodes used/not used in SixtyPical
TODO
For 0.5:
table
type constructor and indirect addressing.
For 0.6:
- hexadecimal literals.
- source code comments.
For 0.7:
word
type.
For 0.8:
vector
type.
For 0.9:
- add line number (or at least routine name) to error messages.
- 6502-mnemonic aliases (
sec
,clc
) - other handy aliases (
eq
forz
, etc.)
Commit History
@0.4
git clone https://git.catseye.tc/SixtyPical/
- Prep for release of 0.4. Chris Pressey 7 years ago
- Add explicitly-addressed memory locations. Chris Pressey 7 years ago
- Implement `if not` and `repeat forever`. Chris Pressey 7 years ago
- Compile `repeat` loops. Chris Pressey 7 years ago
- Spec, parse, evaluate, and analyze `repeat` blocks. Chris Pressey 7 years ago
- Update documentation to reflect this is now 0.4-PRE. Chris Pressey 7 years ago
- Added tag 0.3 for changeset 5d95f1d75a32 Chris Pressey 7 years ago
- Bump version number for release of version 0.3. Chris Pressey 7 years ago
- Don't generate code for empty `else` blocks. Chris Pressey 7 years ago
- Get serialization of relative labels correct. Chris Pressey 7 years ago