forked from libre-chip/fayalite
move public paths of sim::{Compiled,Compiler} to sim::compiler
This commit is contained in:
parent
e7e831cf00
commit
6d36698adf
1 changed files with 3 additions and 4 deletions
|
@ -17,7 +17,8 @@ use crate::{
|
||||||
reset::ResetType,
|
reset::ResetType,
|
||||||
sim::{
|
sim::{
|
||||||
compiler::{
|
compiler::{
|
||||||
CompiledBundleField, CompiledExternModule, CompiledTypeLayoutBody, CompiledValue,
|
Compiled, CompiledBundleField, CompiledExternModule, CompiledTypeLayoutBody,
|
||||||
|
CompiledValue,
|
||||||
},
|
},
|
||||||
interpreter::{
|
interpreter::{
|
||||||
BreakAction, BreakpointsSet, RunResult, SmallUInt, State, StatePartIndex,
|
BreakAction, BreakpointsSet, RunResult, SmallUInt, State, StatePartIndex,
|
||||||
|
@ -47,14 +48,12 @@ use std::{
|
||||||
task::Poll,
|
task::Poll,
|
||||||
};
|
};
|
||||||
|
|
||||||
mod compiler;
|
pub mod compiler;
|
||||||
mod interpreter;
|
mod interpreter;
|
||||||
pub mod time;
|
pub mod time;
|
||||||
pub mod value;
|
pub mod value;
|
||||||
pub mod vcd;
|
pub mod vcd;
|
||||||
|
|
||||||
pub use compiler::{Compiled, Compiler};
|
|
||||||
|
|
||||||
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
pub struct TraceScalarId(usize);
|
pub struct TraceScalarId(usize);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue