2009年4月26日 星期日

ModelSim

I tried ModelSim PE Student Edition first, it is windows only.
Installation

  1. Download the software by filling the "License Agreement Form" in the following link
    ModelSim Student Edition Software Download Request
    http://portal.model.com/modelsim/downloads/license_agreement_form_gen.asp
    then, you will be provided a ftp link with a username and password valid only for 1 hour
  2. download and install the software. at last install step, another form will be bring up in browser to request the student license. Fill it, then the license would be emailed to you.
  3. Put the license file (student_license.dat) into the installed directory (i.g. C:\Modeltech_pe_edu_6.5a)
Using
refer to ModelSim 教學
http://mail.wfc.edu.tw/jin/index.files/ModelSim.ppt
But I can't get the DataFlow view correctly

the adder verilog code
module fulladd(sum,c_out,a,b,c_in);
output sum, c_out;
input a,b,c_in;
wire s1,c1,c2;
xor(s1,a,b);
and(c1,a,b);
xor(sum,s1,c_in);
and(c2,s1,c_in);
or(c_out,c2,c1);
endmodule

module stimulus;
reg [2:0]inputs;
wire sum,c_out;
integer i;
fulladd FA(sum,c_out,inputs[0],inputs[1],inputs[2]);
initial
begin
for(i=0;i<8;i=i+1)
#10 inputs[3:0]=i;
end
endmodule



http://www.model.com/
http://www.model.com/products/default.asp
http://www.model.com/downloads/default.asp
ModelSim PE Student Edition Overview
http://www.model.com/resources/student_edition/student_default.asp
ModelSim PE Student Edition Download
http://www.model.com/resources/student_edition/download.asp

ModelSim 使用教程
http://www.haifeng.idv.tw/leo/cgi-bin/attachment.cgi?forum=107&topic=41&postno=1&name=modelsim_1167968887&type=.pdf


林進發老師個人網站: 教學下載
http://mail.wfc.edu.tw/jin/1.html
ModelSim 教學
http://mail.wfc.edu.tw/jin/index.files/ModelSim.ppt

2004春季課程:數位系統概論實驗: 使用工具或軟體
http://www.myoops.org/twocw/mit/Electrical-Engineering-and-Computer-Science/6-111Spring2004/Tools/index.htm#Start_ModelSim

沒有留言: