新闻| 论坛| 博客| 在线研讨会
LVDS Example
zhchxgh| 2009-07-14 22:49:34 阅读:1117 发布文章

LVDS Example

Here is an example of instantiating an LVDS using the black box method:

module mylvds_tx (tx_in, tx_inclock, sync_inclock, tx_out)/* synthesis syn_black_box
number_of_channels = 1
deserialization_factor = 4
inclock_period = 20000
lpm_type = "ALTLVDS_TX" */;
input [3:0] tx_in;
input tx_inclock;
input sync_inclock;
output [0:0] tx_out;
endmodule

module top (tx_in, tx_inclock, sync_inclock, tx_out);
input [3:0] tx_in;
input tx_inclock;
input sync_inclock;
output [0:0] tx_out;
mylvds_tx u1 (tx_in, tx_inclock, sync_inclock, tx_out);
endmodule

*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。

参与讨论
登录后参与讨论
推荐文章
最近访客