An open API service indexing awesome lists of open source software.

https://github.com/straightcurve/stacc

stack-based programming language compiled to dumb assembly for aarch64 written in Go
https://github.com/straightcurve/stacc

aarch64 assembly go golang just

Last synced: about 1 month ago
JSON representation

stack-based programming language compiled to dumb assembly for aarch64 written in Go

Awesome Lists containing this project

README

          

# stacc - stack-based programming language

## compiled to assembly for aarch64

no one needs it, no one asked for it, I just thought it'd be fun to do it :v

## Arithmetic

- [x] add (+)
- [ ] sub (-)
- [ ] mul (*)
- [ ] div (/)
- [ ] mod (%)
- [x] inc (inc)

## Logical

- [ ] and (&)
- [ ] or (|)
- [ ] not (!)

## Not yet categorized

- [x] swap (swap)
- [x] clone (clone)
- [x] print (print)
- [x] if block