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;
上面这段程序中,用等号表明的部分我不明白,各位能不能解释一下这条语句!!!! |