wasm_interp: new crate, with a value_stack module

This commit is contained in:
Brian Carroll 2022-11-18 08:08:25 +00:00
parent 2f709580cd
commit b0e89dd386
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
5 changed files with 119 additions and 0 deletions

View file

@ -0,0 +1,9 @@
mod value_stack;
#[derive(Debug, Clone, Copy)]
pub enum Value {
I32(i32),
I64(i64),
F32(f32),
F64(f64),
}