cmtc 0.1.2

The cmtc compiler providing cmtir-based passes to generate backends including FIRRTL, SystemVerilog and simulators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The simulation backends for the cmtc compiler

use cmtir as ir;
use cmtir::*;

use crate as cmtc;

pub mod interface;
use interface::*;
pub mod cmtirust;
pub mod verilator;
pub mod ksim;

mod test_utils;

mod ir_extension;
use ir_extension::*;