mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-12 04:03:45 +00:00
13 lines
287 B
Verilog
13 lines
287 B
Verilog
// ---------------------------------------
|
|
|
|
(* abc9_box *)
|
|
module \$__ABC9_DPR16X4_COMB (input [3:0] $DO, RAD, output [3:0] DO);
|
|
specify
|
|
($DO => DO) = 0;
|
|
(RAD[0] *> DO) = 141;
|
|
(RAD[1] *> DO) = 379;
|
|
(RAD[2] *> DO) = 275;
|
|
(RAD[3] *> DO) = 379;
|
|
endspecify
|
|
endmodule
|