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

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

hello_4





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

5come5帮你背单词 [ shrimp /rimp/ n. 虾 ]


初次编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 | [楼 主]
詹姆斯



性别: 保密 状态: 该用户目前不在线
头衔: 再见5C5
等级: 鹤立鸡群
发贴: 1354
威望: 0
浮云: 1108
在线等级:
注册时间: 2006-08-12
最后登陆: 2008-01-04

5come5帮你背单词 [ exist /ig'zist/ vi. 存在,生存 ]


遇到麻烦是很正常的哈~
顶端 Posted: 2007-04-26 09:15 | [1 楼]
我来我网·5come5 Forum » 电子设计·数学建模

Total 0.015082(s) query 6, Time now is:01-03 00:09, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号