native-v86-core 0.1.1

Native Rust x86 CPU interpreter core ported from v86
Documentation
1
2
3
4
#[no_mangle]
pub fn call_indirect1(f: fn(u16), x: u16) {
    f(x);
}