axifull/axifull.rs
1extern crate verugent;
2
3use verugent::vcore::*;
4
5fn main() {
6 axifull();
7}
8
9fn axifull() {
10 let mut al = VModule::new("axi_full_interface");
11 let clk = al.Input("clk", 0);
12 let rst = al.Input("rst", 0);
13
14 let mut axi = AXIS_new(clk, rst);
15 //axi.mem_if();
16 axi.OrderRegSet(64);
17
18 al.AXI(axi);
19
20 al.endmodule();
21 al.genPrint();
22 //al.genFile("axifull.v");
23}