5G核心网极简开局技术架构 5G核心网自动化集成极简开局应用 5G核心网极简开局行业推广及市场实践
2020-12-22 07:40
是否有任何可用于UG472中提到的“计数器级联”的示例设计。-谢谢
2020-08-10 09:31
我想如何实现代码执行的延迟。我写了这个小代码。我希望当select为0时,LED 2应该发光,经过一段时间后LED应该发光,但两者同时发光。代码没有给出任何警告或错误。代码附后。模块时钟(零,二,选择);输出零,两个;输入选择;reg zero,two;总是@(选择) 开始if(选择== 0)开始2 = 1'b1的;#60000000 zero = 1'b1;结束 其他 开始 2 = 1'b0; 零= 1'b0;结束结束endmodule最后告诉我如何将编码中的时间刻度设置为秒,默认情况下为纳秒。基本上我希望LED 60在60秒后点亮。我试过了 时标1s在程序开始但它给出了错误,我删除了时间刻度线谢谢以上来自于谷歌翻译以下为原文I wanthow to implement delay in execution of code.I have written this small code. I want that when select is 0, LED two should glow and after some time LED zero should glow but both are glowing at the same time.The code is not giving any warning or error.The code is attached. module clock(zero,two,select);output zero,two;input select;reg zero,two;always@(select)beginif (select==0)begintwo=1'b1;#60000000 zero=1'b1;endelse begintwo=1'b0;zero=1'b0;endendendmodule Lastly tell me how to set timescale in coding to seconds, by default it is nano seconds. Basically i want LED 0 to lit after 60 seconds. i tried timescale 1s at start of programm but it gave error and i deleted time scale line Thanks
2019-06-04 12:29
嗨, 我正在C和MATLAB中实现图像比较的代码。现在我想知道从xilinx上的.c文件中的.m文件(或).vhdl文件创建.vhdl文件的过程,或者是否有任何可用于此转换的开源并且所有.m文件都可以转换为.hdl文件或者是否有任何限制。请尽早告诉我。谢谢,Ganesh神。以上来自于谷歌翻译以下为原文Hi, I am implementing the code for image comparison in C and MATLAB.Now i want to know the process to create .vhdl file from .m file (or) .vhdl file from .c file on xilinx or is there any opensources available for this conversion and also is all .m files can be converted to .hdl files or is there any limitations.Please,let me know as early as possible. Thanks,Ganesh.
2019-03-18 13:10