We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cbf393 commit 9bfa8b4Copy full SHA for 9bfa8b4
protocols/src/backends.rs
@@ -0,0 +1,4 @@
1
+// Copyright 2026 Cornell University
2
+// released under MIT License
3
+// author: Kevin Laeufer <laeufer@cornell.edu>
4
+mod verilog;
protocols/src/backends/verilog.rs
@@ -0,0 +1,7 @@
+
5
+pub fn to_verilog() {
6
+ todo!()
7
+}
protocols/src/lib.rs
@@ -5,6 +5,7 @@
// author: Francis Pham <fdp25@cornell.edu>
// author: Ernest Ng <eyn5@cornell.edu>
8
+pub mod backends;
9
pub mod diagnostic;
10
pub mod errors;
11
pub mod interpreter;
0 commit comments