由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Verilog问题
相关主题
ASIC DFT engineer position for fresh graduateinternships (summer 2013) & senior engineer opening for Xilinx (bay area, CA)
最后一次恳求工作推荐: EE--------Digital Logic Design/VLSI/实在找不到合适的工作,准备洗手回国,美国梦再见。
一个猎头发来的机会恳求工作内推: Electrical and Computer Engineering方向
找cs码工工作的话简历里写会verilog恳求工作内推: Electrical and Computer Engineering方向
招人 - two positions求IBM内推
诡异的EE面试恳求工作内推: Electrical and Computer Engineering方向
EDA 公司在Austin office的一个支持工程师职位 (转载)【求教】trading firm里的FPGA职位面试一般问什么?
其实要说码工门槛低那只是一个假象(作为一个EE人对于码工的理解)湾区INTERN机会 (转载)
相关话题的讨论汇总
话题: verilog话题: time话题: value话题: vhdl话题: take
进入JobHunting版参与讨论
1 (共1页)
z**********8
发帖数: 229
1
最近在准备Verilog的问题的时候发现这题:
Difference between inter statement and intra statement delay?
//define register variables
reg a, b, c;
//intra assignment delays
initial
begin
a = 0; c = 0;
b = #5 a + c; //Take value of a and c at the time=0, evaluate
//a + c and then wait 5 time units to assign value
//to b.
end
//Equivalent method with temporary variables and regular delay control
initial
begin
a = 0; c = 0;
temp_ac = a + c;
#5 b = temp_ac; //Take value of a + c at the current time and
//store it in a temporary variable. Even though a and c
//might change between 0 and 5,
//the value assigned to b at time 5 is unaffected.
end
求解释一个这个verilog的问题。还是没看懂这两个有什么区别,好像两个都是在0的时
候就把a+c算好了,0~5变化也不会影响b啊~~
还有一些附加的问题:
1、What is delta simulation time?(找不到答案。。。用verilog/VHDL的时候也没
听过。。。掩面)
2、Difference between task and function? (task 和function在verilog实际中用
的多么?verilog我只是用CMOS VLSI DESIGN后面的appendix学过,没看到用这两个的
例子,VHDL有hands-on experiences但印象中也没这个)
h*******o
发帖数: 778
2
these are all basic questions. Go find a verilog book. you will have all the
answers...

【在 z**********8 的大作中提到】
: 最近在准备Verilog的问题的时候发现这题:
: Difference between inter statement and intra statement delay?
: //define register variables
: reg a, b, c;
: //intra assignment delays
: initial
: begin
: a = 0; c = 0;
: b = #5 a + c; //Take value of a and c at the time=0, evaluate
: //a + c and then wait 5 time units to assign value

g*********e
发帖数: 14401
3
re
z**********8
发帖数: 229
4
哦第一个问题懂了,。。其实两个都是intra,第二个只是用比较general的写法解释一
下而已。。。一开始没看清楚。。。
1 (共1页)
进入JobHunting版参与讨论
相关主题
湾区INTERN机会 (转载)招人 - two positions
Electrical Engineer - Aerospace (contractor)诡异的EE面试
ASML-HMI FPGA Sr. Engineer职位内推EDA 公司在Austin office的一个支持工程师职位 (转载)
迷茫, EDA公司的CAE 可以换什么工作?其实要说码工门槛低那只是一个假象(作为一个EE人对于码工的理解)
ASIC DFT engineer position for fresh graduateinternships (summer 2013) & senior engineer opening for Xilinx (bay area, CA)
最后一次恳求工作推荐: EE--------Digital Logic Design/VLSI/实在找不到合适的工作,准备洗手回国,美国梦再见。
一个猎头发来的机会恳求工作内推: Electrical and Computer Engineering方向
找cs码工工作的话简历里写会verilog恳求工作内推: Electrical and Computer Engineering方向
相关话题的讨论汇总
话题: verilog话题: time话题: value话题: vhdl话题: take