Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.36 KB

README.md

File metadata and controls

53 lines (33 loc) · 1.36 KB

WebAssembly FPGA Stack

This repository implements the stack used by the WebAssembly runtime.

Features

  • Push and pop values of various types from the stack (i32, i64, f32, f64)
  • Create and remove activation frames

Documentation

Documentation is available from wasm-fpga.readthedocs.io.

Get in touch

Continuous Integration (CI)

This repository contains a .travis.yml and a ci folder which both are used for CI.

Pre-Commit Hooks

This repository provides pre-commit and pre-push hooks. They are installed using the following commands:

~$ pre-commit install -t pre-commit
~$ pre-commit install -t pre-push

The following command runs the hooks and checks all files.

~$ pre-commit run --all-files --hook-stage push

License

Licensed under the MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT).