marlin_verilog/
lib.rs

1// Copyright (C) 2024 Ethan Uppal.
2//
3// This Source Code Form is subject to the terms of the Mozilla Public License,
4// v. 2.0. If a copy of the MPL was not distributed with this file, You can
5// obtain one at https://mozilla.org/MPL/2.0/.
6
7//! Verilog integration for Marlin.
8
9pub mod __reexports {
10    pub use libc;
11    pub use libloading;
12    pub use marlin_verilator as verilator;
13}
14
15pub use marlin_verilog_macro::dpi;
16
17pub mod prelude {
18    pub use crate as verilog;
19    pub use marlin_verilog_macro::verilog;
20}