摘要:
Notice! This document is currently in Archived status. The content of this document may be incorrect or out dated.Using the .Xdefaults file.Purdue Engineering Computer NetworkThe file called .Xdefaults in your home directory is loaded into the X server using the xrdb program when you start your X se 阅读全文
摘要:
– 来自University of Mississippi 的教学生如果使用Unix命令和操作系统交互的课程Using UNIX commandsYou interact with the Unix operating system by entering a command at the shell prompt.You can look up the command in the On-line Manual for a complete description of it.About commandsDid You Know?Where are commands located?Ente 阅读全文
摘要:
Basic Unix CommandsThe following list of basic unix commandshas been compiled by Per Kistler.Directory::Show current directorypwdShow content of directoryls -alChanging directorycd <newdir>Creating directorymkdir <dir>Deleting directory if emptyrmdir <dir>Deleting directory if full 阅读全文
摘要:
记得这曾经是我同学碰到的一道面试题,回来后他出给我们,弱弱的我自然是不知道咯。近日旧事重提,却忘记当时给的解答了。在网络上一搜索,实现方式还真不少,玆举例如下:第一种方法是用计数器进行N分频,N这里是奇数。然后利用分频后占空比不是50%的输出信号和原始时钟信号通过组合逻辑处理,构成50%占空比的奇数分频器。第二种思路是,将第一种方法类似的计数器的输出用时钟信号的下降沿延时半个时钟周期,然后两者相与或者或产生50%占空比的分频信号:always@(negedge resetn or posedge clk)begin if (resetn==1'b0) begin cnt1[1:0]&l 阅读全文
摘要:
首先,我把我用到的软件说明一下。如果你发现根据我的操作,你还是解决不了ModelSim后仿真的问题,那就可能是软件版本的问题。1,ModelSim Se 6.1b2,Synplify Pro 7.5.13,ISE 5.2i (这个是老了点)4,WindowsXP(这个应该没有多大的关系) 还有就是我使用的是verilog,我想VHDL的方法与verilog是差不多的,最多也就是在建库方面有点差别而已。下面的这些方法,是我这3天搞出来的。当然也参考了一些文章。如果谁有更方便的方法,欢迎指出来。一、为modelsim生成3个库。首先,介绍一下这三个库。Simprim_ver:用于布局布线后的仿真。 阅读全文