native-v86-core 0.1.1

Native Rust x86 CPU interpreter core ported from v86
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[rustfmt::skip]
pub mod interpreter;
#[rustfmt::skip]
pub mod interpreter0f;

#[cfg(not(feature = "native-interpreter"))]
#[rustfmt::skip]
pub mod jit;
#[cfg(not(feature = "native-interpreter"))]
#[rustfmt::skip]
pub mod jit0f;

#[cfg(not(feature = "native-interpreter"))]
#[rustfmt::skip]
pub mod analyzer;
#[cfg(not(feature = "native-interpreter"))]
#[rustfmt::skip]
pub mod analyzer0f;