CoolRunner-II器件的Pullup(上拉)输入/输出
发布时间:2008/9/17 0:00:00 访问次数:635
pullup功能可以在输入/输出脚增加弱的上拉电阻,该功能需要通过属性来控制,其属性设置如下。
(1)约束文件(ucf)
net <signal name> pullup;
例如:
net data_in pullup;
net clock pullup;
(2)vhdl语言
attribute pullup: string;
attribute pullup of <signal name>: signal is "true";
例如:
attribute pullup: string;
attribute pullup of data_in: signal is "true"
attribute pullup of clock: signal is "true";
(3)verilog语言
//synthesis attribute pullup of <signat name>
例如:
//synthesis attribute pullup of data_in;
// synthesis attribute pullup of clock;
欢迎转载,信息来自维库电子市场网(www.dzsc.com)
(1)约束文件(ucf)
net <signal name> pullup;
例如:
net data_in pullup;
net clock pullup;
(2)vhdl语言
attribute pullup: string;
attribute pullup of <signal name>: signal is "true";
例如:
attribute pullup: string;
attribute pullup of data_in: signal is "true"
attribute pullup of clock: signal is "true";
(3)verilog语言
//synthesis attribute pullup of <signat name>
例如:
//synthesis attribute pullup of data_in;
// synthesis attribute pullup of clock;
欢迎转载,信息来自维库电子市场网(www.dzsc.com)
pullup功能可以在输入/输出脚增加弱的上拉电阻,该功能需要通过属性来控制,其属性设置如下。
(1)约束文件(ucf)
net <signal name> pullup;
例如:
net data_in pullup;
net clock pullup;
(2)vhdl语言
attribute pullup: string;
attribute pullup of <signal name>: signal is "true";
例如:
attribute pullup: string;
attribute pullup of data_in: signal is "true"
attribute pullup of clock: signal is "true";
(3)verilog语言
//synthesis attribute pullup of <signat name>
例如:
//synthesis attribute pullup of data_in;
// synthesis attribute pullup of clock;
欢迎转载,信息来自维库电子市场网(www.dzsc.com)
(1)约束文件(ucf)
net <signal name> pullup;
例如:
net data_in pullup;
net clock pullup;
(2)vhdl语言
attribute pullup: string;
attribute pullup of <signal name>: signal is "true";
例如:
attribute pullup: string;
attribute pullup of data_in: signal is "true"
attribute pullup of clock: signal is "true";
(3)verilog语言
//synthesis attribute pullup of <signat name>
例如:
//synthesis attribute pullup of data_in;
// synthesis attribute pullup of clock;
欢迎转载,信息来自维库电子市场网(www.dzsc.com)