首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

各位能不能解释一下这条语句!!!!

各位能不能解释一下这条语句!!!!

process(clock)
 begin
  if(clock'event and clock='1') then
   if(h_period=640)then --行周期64us
     h_period<=(others =>'0'); ================================================
      if(h_cout=625) then   --奇数场扫描的行数,假设奇数场扫描312行
      h_cout<=(others =>'0');
      else
      h_cout<=h_cout+1;
      end if;             
   else
    h_period<=h_period+1;
   end if;
        end if;

end process;

上面这段程序中,用等号表明的部分我不明白,各位能不能解释一下这条语句!!!!

当行周期为64us时

 h_period<=(others =>'0');-- 将行周期清零。

[此贴子已经被作者于2005-12-29 16:48:39编辑过]

返回列表