3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-28 11:25:53 +00:00

Moved presentation_prog

This commit is contained in:
Krystine Sherwin 2023-08-03 09:20:29 +12:00
parent 045c04096e
commit cd6e63e1a9
No known key found for this signature in database
11 changed files with 257 additions and 621 deletions

View file

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