2022-09-14 20:28:12 +00:00
|
|
|
// Copyright (C) 2022 Yehowshua Immanuel
|
|
|
|
// This program is distributed under both the GPLV3 license
|
|
|
|
// and the YEHOWSHUA license, both of which can be found at
|
|
|
|
// the root of the folder containing the sources for this program.
|
2022-10-26 05:16:39 +00:00
|
|
|
|
2022-09-09 06:59:33 +00:00
|
|
|
mod vcd;
|
2022-10-26 05:16:39 +00:00
|
|
|
pub use vcd::parse::parse_vcd;
|
2022-12-23 10:34:48 +00:00
|
|
|
pub use vcd::signal::{Signal, SignalValue};
|
2023-09-26 11:16:14 +00:00
|
|
|
pub use vcd::types::{Metadata, Timescale, Version};
|
|
|
|
pub use vcd::types::{ScopeIdx, SignalIdx, VCD};
|
2022-09-13 23:35:23 +00:00
|
|
|
|
2022-09-14 20:28:12 +00:00
|
|
|
pub use num::BigUint;
|