add support for simulator-only values #35

Merged
programmerjake merged 6 commits from programmerjake/fayalite:sim-non-hdl-data into master 2025-09-09 05:35:24 +00:00
Showing only changes of commit 6d36698adf - Show all commits

View file

@ -17,7 +17,8 @@ use crate::{
reset::ResetType,
sim::{
compiler::{
CompiledBundleField, CompiledExternModule, CompiledTypeLayoutBody, CompiledValue,
Compiled, CompiledBundleField, CompiledExternModule, CompiledTypeLayoutBody,
CompiledValue,
},
interpreter::{
BreakAction, BreakpointsSet, RunResult, SmallUInt, State, StatePartIndex,
@ -47,14 +48,12 @@ use std::{
task::Poll,
};
mod compiler;
pub mod compiler;
mod interpreter;
pub mod time;
pub mod value;
pub mod vcd;
pub use compiler::{Compiled, Compiler};
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct TraceScalarId(usize);