mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #5746 from IAmMarcelJung/fabulous/add_frame_config_mux_bels
fabulous: add frame_config_mux BEls
This commit is contained in:
commit
06264cdb2e
|
|
@ -149,6 +149,30 @@ module OutPass4_frame_config (input CLK, I0, I1, I2, I3);
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
(* blackbox, keep *)
|
||||||
|
module InPass4_frame_config_mux #(
|
||||||
|
parameter [3:0] O_reg = 0
|
||||||
|
) (
|
||||||
|
input CLK,
|
||||||
|
output O0,
|
||||||
|
output O1,
|
||||||
|
output O2,
|
||||||
|
output O3
|
||||||
|
);
|
||||||
|
endmodule
|
||||||
|
|
||||||
|
(* blackbox, keep *)
|
||||||
|
module OutPass4_frame_config_mux #(
|
||||||
|
parameter [3:0] I_reg = 0
|
||||||
|
) (
|
||||||
|
input I0,
|
||||||
|
input I1,
|
||||||
|
input I2,
|
||||||
|
input I3,
|
||||||
|
input CLK
|
||||||
|
);
|
||||||
|
endmodule
|
||||||
|
|
||||||
(* keep *)
|
(* keep *)
|
||||||
module IO_1_bidirectional_frame_config_pass (input CLK, T, I, output Q, O, (* iopad_external_pin *) inout PAD);
|
module IO_1_bidirectional_frame_config_pass (input CLK, T, I, output Q, O, (* iopad_external_pin *) inout PAD);
|
||||||
assign PAD = T ? 1'bz : I;
|
assign PAD = T ? 1'bz : I;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue