我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

本页主题: 初次编verilog就受打击 显示签名 | 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

hello_4





性别: 保密 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 713
威望: 0
浮云: 1133
在线等级:
注册时间: 2006-08-04
最后登陆: 2007-06-26

5come5帮你背单词 [ scientific /saiən'tifik/ a. 科学的 ]


初次编verilog就受打击

module controller(send_floor,stop,up,clk);
input up;
input stop;
input clk;
reg upin;
reg stopin;
reg current_up,next_up;
reg send_floor;
output send_floor;

parameter
busy=1'b1,
idle=1'b0,
send=1'b1,
nsend=1'b0;

initial
begin
current_up=0;
end

always @(posedge clk)
begin
upin<=up;
stopin<=stop;
end


always @(posedge clk)
begin
case(current_up)
idle:begin
if(upin)
begin
next_up<=busy;
send_floor<=send;
end
else
next_up<=idle;
end
busy:begin
if(stopin)
begin
next_up<=idle;
send_floor<=nsend;
end
else
next_up<=busy;
end
default:next_up<=current_up;
endcase
current_up<=next_up;

end

endmodule
顶端 Posted: 2007-04-26 08:24 | [楼 主]
yinx



性别: 帅哥 状态: 该用户目前不在线
等级: 人见人爱
家族: 丢丢
发贴: 2333
威望: 0
浮云: 1260
在线等级:
注册时间: 2006-09-15
最后登陆: 2009-05-11

5come5帮你背单词 [ maid /meid/ n. 女仆,未婚少女 ]


我也不是很懂,不过我把output的声明提到reg的前面我就编译通过了

module controller(send_floor,stop,up,clk);
input up;
input stop;
input clk;
output send_floor;
reg upin;
reg stopin;
reg current_up,next_up;
reg send_floor;


楼主第一次编就编这么难的程序啊?
顶端 Posted: 2007-04-26 08:54 | [1 楼]
我来我网·5come5 Forum » 电子设计·数学建模

Total 0.018673(s) query 8, Time now is:01-02 23:54, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号