mybufg.v
来自「XILINX memory interface generator. XILI」· Verilog 代码 · 共 29 行
V
29 行
`timescale 1ns/100ps //added by sailaja
module mybufg (
I,
O
);
//Input/Output declarations
input I;
output O;
//attribute syn_hier : string;
//attribute syn_hier of mybufg_arch: architecture is "hard";
//bufg u1 (I,O);
BUFG u1 (O,I);
endmodule
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?