sync_block.v的功能是什么呀?
时间:10-02
整理:3721RD
点击:
以太网ip核的demo中,经常会使用sycn_block.v这个文件,好像是数据同步的意思,有谁能给我详细讲一下吗?
FD #(
.INIT (INITIALISE[0])
) data_sync (
.C (clk),
.D (data_in),
.Q (data_sync1)
);
的作用是什么呢?
FD #(
.INIT (INITIALISE[0])
) data_sync (
.C (clk),
.D (data_in),
.Q (data_sync1)
);
的作用是什么呢?
The sync block processes the signal across the two different clock domain.
看起来是用作跨时钟域同步的,找出这个例化模块的代码读一读就知道了。
