用VHDL语言编写的VGA显示彩条

时间:2013-07-19 02:51:54
【文件属性】:

文件名称:用VHDL语言编写的VGA显示彩条

文件大小:2KB

文件格式:VHD

更新时间:2013-07-19 02:51:54

VGA

用VHDL语言编写的彩条显示,部分程序如下: architecture behave of VGA is -- horizontal timing signals constant h_data: integer:=640; constant h_front: integer:=16; constant h_back: integer:=48; constant h_sync: integer:=96; constant h_period: integer:= h_sync + h_data + h_front + h_back; -- vertical timing signals constant v_data: integer:=480; constant v_front: integer:=11; constant v_back: integer:=32; constant v_sync: integer:=2; constant v_period: integer:= v_sync + v_data + v_front + v_back; signal henable, venable : std_logic; signal clk50M : std_logic; signal hcnt: std_logic_vector(9 downto 0); -- horizontal pixel counter signal vcnt: std_logic_vector(9 downto 0); -- vertical line counter


网友评论

  • 不知道为什么杀毒软件会报病毒
  • 很好,非常有帮助
  • 程序可以使用,对实验有帮助。
  • 代码是可以实现的
  • 可以实现的,逻辑没错,只要修改接口就可用
  • 很好~验证通过,已经实现
  • 代码还不错,对我很有帮助啊。