Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/z-silver/elevator-chime
Zig implementation of the Chime VM
https://github.com/z-silver/elevator-chime
forth vm zig
Last synced: 29 days ago
JSON representation
Zig implementation of the Chime VM
- Host: GitHub
- URL: https://github.com/z-silver/elevator-chime
- Owner: z-silver
- License: unlicense
- Created: 2024-02-16T07:54:32.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-08-28T14:45:36.000Z (4 months ago)
- Last Synced: 2024-08-28T16:19:14.370Z (4 months ago)
- Topics: forth, vm, zig
- Language: Zig
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elevator Chime
> Keeping it vertical,
> forever elevator.
> Riding the escalator
> to the something that is greater.-- Nujabes & Cyne - Feather
Elevator Chime is a Zig reimplementation of [Chime](https://github.com/Dr-Nekoma/chime).
`zig build test` executes the triangle numbers and short multiplication example programs.
`zig build chaff` reads a chaff assembly file from stdin, compiles it and writes the result to stdout.
`zig build run -- ` loads and executes a compiled program.
A plain `zig build` produces two executables: `elevator-chime`, which is the program called by `zig build run`, and `chaff`, which is called by `zig build chaff`.
Written against Zig version `0.13.0`.