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

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

hello_4





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

5come5帮你背单词 [ tobacco /tə'bækəu/ 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 | [楼 主]
2121



性别: 帅哥 状态: 该用户目前不在线
等级: 希望之光
发贴: 1662
威望: 0
浮云: 1114
在线等级:
注册时间: 2004-12-03
最后登陆: 2012-02-01

5come5帮你背单词 [ chest /test/ n. 箱子,柜子,胸膛,胸腔 ]


初次已经很厉害了啊
顶端 Posted: 2007-04-26 22:42 | [1 楼]
我来我网·5come5 Forum » 电子设计·数学建模

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