3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-10 13:10:51 +00:00

Progress in presentation

This commit is contained in:
Clifford Wolf 2014-06-22 12:50:29 +02:00
parent 3345fa0bab
commit a7aea17959
7 changed files with 503 additions and 42 deletions

View file

@ -0,0 +1,3 @@
module absval_ref(input signed [3:0] a, output [3:0] y);
assign y = a[3] ? -a : a;
endmodule