Skip to content

Commit

Permalink
tests: add murax test
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Comodi <[email protected]>
  • Loading branch information
acomodi committed May 10, 2021
1 parent aecc9b0 commit 116c02d
Show file tree
Hide file tree
Showing 10 changed files with 8,808 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/common/remap.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module INV(input I, output O);

LUT1 #(.INIT(2'b01)) _TECHMAP_REPLACE_ (.I0(I), .O(O));

endmodule

module BUF(input I, output O);

LUT1 #(.INIT(2'b10)) _TECHMAP_REPLACE_ (.I0(I), .O(O));

endmodule
8 changes: 8 additions & 0 deletions tests/murax/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
add_xc7_test(
name murax
board_list basys3
tcl run.tcl
top toplevel
sources Murax.v basys3_toplevel.v
techmap ../common/remap.v
)
Loading

0 comments on commit 116c02d

Please sign in to comment.