1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-04-04 00:31:07 +00:00

13 lines
157 B
Rust
Raw Normal View History

2019-02-12 00:52:01 +08:00
#![feature(proc_macro_hygiene)]
2019-02-12 00:52:01 +08:00
#[macro_use]
extern crate dynasmrt;
2019-02-12 00:52:01 +08:00
#[macro_use]
extern crate dynasm;
2019-02-12 00:52:01 +08:00
mod codegen;
mod codegen_x64;
mod parse;
mod stack;