mirror of https://github.com/YosysHQ/yosys.git
fabulous: Add CLK to BRAM interface primitives
Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
parent
a20804c6ed
commit
25e7cb3bbb
|
@ -93,13 +93,13 @@ module Global_Clock (output CLK);
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
(* blackbox, keep *)
|
(* blackbox, keep *)
|
||||||
module InPass4_frame_config (output O0, O1, O2, O3);
|
module InPass4_frame_config (input CLK, output O0, O1, O2, O3);
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
|
||||||
(* blackbox, keep *)
|
(* blackbox, keep *)
|
||||||
module OutPass4_frame_config (input I0, I1, I2, I3);
|
module OutPass4_frame_config (input CLK, I0, I1, I2, I3);
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
@ -414,4 +414,4 @@ module LUTFF_ESS (
|
||||||
O <= D;
|
O <= D;
|
||||||
end
|
end
|
||||||
endmodule
|
endmodule
|
||||||
`endif // COMPLEX_DFF
|
`endif // COMPLEX_DFF
|
||||||
|
|
Loading…
Reference in New Issue