完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我将可变长度从9位更改为32位,系统未通过测试。
我不确定为什么更改导致失败,因为逻辑方面它不应该影响测试结果(因为frame_sync_width没有在任何地方处理,逻辑应该被更改。这个更改是否导致任何时序更改?)。 以下是我对每个文件所做的更改。 registers.v: old:output [8:0] dpll_clk_count; reg [8:0] dpll_clk_count; dpll_clk_count `DPLL_CLK_COUNT_REGISTER:dpll_clk_count usrt.v: 旧: wire [8:0] dpll_clk_count; dpll dpll_c(.rx_clk_out(dpll_rx_clk),. tx_clk_out(dpll_tx_clk),. dplla(dplla),. rx_data(rx_data),. enable_dpll(rx_clk_dpll),. enable_phase_shift(enable_phase_shift),. fm_mode(fm_mode),. manchester_mode(manchester_mode) ,.dpll_clk_count(dpll_clk_count),. redset(reset),. clk(bgr_clk_out)); 新: wire [31:0] dpll_clk_count; wire [5:0] frame_sync_width; assign frame_sync_width = colin_en? dpll_clk_count [31:26]:'bz; dpll dpll_c(.rx_clk_out(dpll_rx_clk),. tx_clk_out(dpll_tx_clk),. dplla(dplla),. rx_data(rx_data),. enable_dpll(rx_clk_dpll),. enable_phase_shift(enable_phase_shift),. fm_mode(fm_mode),. manchester_mode(manchester_mode) ,.dpll_clk_count(dpll_clk_count [8:0]),. redset(reset),. clk(bgr_clk_out)); registers.v文件用作usrt.v中的模块。 *论坛管理员删除了附件 以上来自于谷歌翻译 以下为原文 I changed the variable length from 9 bits to 32 bits and the system failed the test. I am not sure why the change causes the failure because logic-wise it shouldn't affect the test result (since the frame_sync_width is not being handled anywhere, the logic should be changed. Is this change cause any timing change? ). The following is the changes I have made on each file. registers.v: old: output [8:0] dpll_clk_count; reg [8:0] dpll_clk_count; dpll_clk_count <= 8'b00000100;//default to 32 clocks `DPLL_CLK_COUNT_REGISTER : dpll_clk_count <= cpu_wr_data[8:0]; `DPLL_CLK_COUNT_REGISTER : reg_data = {23'b0,dpll_clk_count}; new: output [31:0] dpll_clk_count; reg [31:0] dpll_clk_count; dpll_clk_count <= 32'h4;//default to 32 clocks `DPLL_CLK_COUNT_REGISTER : dpll_clk_count <= cpu_wr_data; `DPLL_CLK_COUNT_REGISTER : reg_data = dpll_clk_count; usrt.v: old: wire [8:0] dpll_clk_count; dpll dpll_c ( .rx_clk_out(dpll_rx_clk), .tx_clk_out(dpll_tx_clk), .dplla(dplla), .rx_data(rx_data), .enable_dpll(rx_clk_dpll), .enable_phase_shift(enable_phase_shift), .fm_mode(fm_mode), .manchester_mode(manchester_mode), .dpll_clk_count(dpll_clk_count), .reset(reset), .clk(bgr_clk_out) ); new: wire [31:0] dpll_clk_count; wire [5:0] frame_sync_width; assign frame_sync_width = colin_en ? dpll_clk_count[31:26] : 'bz; dpll dpll_c ( .rx_clk_out(dpll_rx_clk), .tx_clk_out(dpll_tx_clk), .dplla(dplla), .rx_data(rx_data), .enable_dpll(rx_clk_dpll), .enable_phase_shift(enable_phase_shift), .fm_mode(fm_mode), .manchester_mode(manchester_mode), .dpll_clk_count(dpll_clk_count[8:0]), .reset(reset), .clk(bgr_clk_out) ); The registers.v file is used as a module in usrt.v. *attachments removed by Forums admin |
|
相关推荐
2个回答
|
|
我建议你做路线后模拟,看看变化后的行为是否符合预期。如果你没有在模拟中看到正确的行为,那么工具可以进行一些优化.Regards,Krishna
-------------------------------------------------- ---------------------------------------------请将帖子标记为 如果提供的信息能够回答您的问题/解决您的问题,请“接受为解决方案”。给予您认为有用的帖子。 以上来自于谷歌翻译 以下为原文 I would recommend you to do post-route simulations to see if the behavior after the change is as expected. If you are not seeing the correct behavior in the simulation then there could be some optimization done by the tool. Regards, Krishna----------------------------------------------------------------------------------------------- Please mark the post as "Accept as solution" if the information provided answers your query/resolves your issue. Give Kudos to a post which you think is helpful. |
|
|
|
可能存在修整或不正确的逻辑合成。
请检查合成和地图重新编辑是否有任何修剪逻辑。 如前所述,路线后模拟肯定会追踪失败点。 希望这可以帮助。 问候 Sikta 以上来自于谷歌翻译 以下为原文 There could be trimming or incorrect logic synthesiszed. Please check the synthesis and map reprots for any trimming logic. As suggested earlier, post route simulations definitely track down the failure points. Hope this helps. Regards Sikta |
|
|
|
只有小组成员才能发言,加入小组>>
2429 浏览 7 评论
2830 浏览 4 评论
Spartan 3-AN时钟和VHDL让ISE合成时出现错误该怎么办?
2298 浏览 9 评论
3378 浏览 0 评论
如何在RTL或xilinx spartan fpga的约束文件中插入1.56ns延迟缓冲区?
2468 浏览 15 评论
有输入,但是LVDS_25的FPGA内部接收不到数据,为什么?
1294浏览 1评论
请问vc707的电源线是如何连接的,我这边可能出现了缺失元件的情况导致无法供电
592浏览 1评论
求一块XILINX开发板KC705,VC707,KC105和KCU1500
455浏览 1评论
2010浏览 0评论
736浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-27 05:42 , Processed in 1.225906 second(s), Total 79, Slave 63 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号