Files
wasmtime/src/libcretonne/isa/mod.rs
Jakob Stoklund Olesen c47c524017 Add an empty isa/riscv module scaffold.
Targeted ISAs will be defined as sub-modules of isa.
2016-08-04 11:39:25 -07:00

7 lines
171 B
Rust

//! Instruction Set Architectures.
//!
//! The sub-modules of this `isa` module provide definitions for the instruction sets that Cretonne
//! can target.
pub mod riscv;