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: over 1 year 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 (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-08T02:28:28.000Z (over 1 year ago)
- Last Synced: 2025-03-08T03:21:35.088Z (over 1 year ago)
- Topics: forth, vm, zig
- Language: Zig
- Homepage:
- Size: 64.5 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.14.0`.