专家
公告
财富商城
电子网
旗下网站
首页
问题库
专栏
标签库
话题
专家
NEW
门户
发布
提问题
发文章
FPGA
自己用纯verilog 写的俄罗斯方块,有很多问题,求大神指导
2020-02-03 10:40
发布
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
站内问答
/
FPGA
1524
5
5
always [url=home.php?mod=space&uid=72445]@[/url] (posedge clk or negedge rst )
begin
if (!rst)
state<=State_idle;
else
state<=next_state;
end
//第二段状态机
always @ (posedge clk or negedge rst )
begin
if (!rst)
begin
next_state<=0;
isNew<=0;
end
else
begin
case (state)
/********上电复位后的空状态****************************/
State_idle:
begin
if (isStart)
next_state<=State_new;
else
next_state<=State_new;
end
/**************产生一个新的方块******************************/
State_new:
begin
isNew<=1'b1;
next_state<=State_hold;
end
/***********保持状态等待信号*********************************/
State_hold:
begin
isNew<=1'b0;
isCount<=1'b1;
isMove_D<=0;
isMove_R<=0;
isMove_L<=0;
if(Count_Finish)
begin
next_state<=State_down;
isClear<=1'b1;
end
else if (ps2_data_in==8'h74)
next_state<=State_move_R;
else if (ps2_data_in==8'h6B)
next_state<=State_move_L;
else if (ps2_data_in==8'h72)
next_state<=State_down;
end
/**************判断方块能否下降一格*************************/
State_down:
begin
isClear<=1'b0;
if (Move_D_EN)
begin
isMove_D<=1'b1;
next_state<=State_hold;
end
else
next_state<=State_remove_1;
end
/********************************************/
State_move_L:
begin
if (Move_L_EN)
isMove_L<=1'b1;
next_state<=State_hold;
end
/***********更新方块的坐标信息****************************/
State_move_R:
begin
if (Move_R_EN)
isMove_R<=1'b1;
next_state<=State_hold;
end
/***********方块不能下降后更新背景矩阵的信息*********************************/
State_remove_1:
begin
isremove<=1'b1;
next_state<=State_remove_2;
end
/***********判断是否可以清除*********************************/
State_remove_2:
begin
isremove<=1'b0;
Check_Sig<=1'b1;
if(Check_Finish)
next_state<=State_isdie;
end
/***********判断是否死亡*********************************/
State_isdie:
begin
if (BackGround[3]>16'h8001)
next_state<=State_stop;
else
next_state<=State_new;
end
State_stop:
begin
next_state<=State_idle;
end
endcase
end
end
目前不知道为何很多功能无法实现,求大神路过能留个qq,小弟想大神取些经~~谢谢
复制代码
l
友情提示:
此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
5条回答
18971591125
2020-02-03 14:22
我用FPGA做这些东西之前,喜欢用C验证下我的想法思路是不是对的,一般都是VS先编程验证思路,再将思路再FPGA中实现,当然不是说把VERILOG写成C,上次写过一个俄罗斯方块游戏,可以交流
加载中...
查看其它5个回答
一周热门
更多
>
相关问题
如何用FPGA驱动LCD屏?
5 个回答
请教一下各位专家如何用FPGA做eDP接口?
6 个回答
FPGA CH7301c DVI(显示器数字接口)没有数字输出
7 个回答
100颗FPGA的板子,开开眼界
6 个回答
求教自制最小系统版
10 个回答
相关文章
嵌入式领域,FPGA的串口通信接口设计,VHDL编程,altera平台
0个评论
Xilinx的FPGA开发工具——ISE开发流程
0个评论
基于FPGA的详细设计流程
0个评论
干货分享,FPGA硬件系统的设计技巧
0个评论
一种通过FPGA对AD9558时钟管理芯片进行配置的方法
0个评论
×
关闭
采纳回答
向帮助了您的知道网友说句感谢的话吧!
非常感谢!
确 认
×
关闭
编辑标签
最多设置5个标签!
FPGA
保存
关闭
×
关闭
举报内容
检举类型
检举内容
检举用户
检举原因
广告推广
恶意灌水
回答内容与提问无关
抄袭答案
其他
检举说明(必填)
提交
关闭
×
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮
×
付费偷看金额在0.1-10元之间
确定
×
关闭
您已邀请
0
人回答
查看邀请
擅长该话题的人
回答过该话题的人
我关注的人
一周热门 更多>