Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.16 KB | None | 0 0
  1. process (clk,reset)
  2. begin
  3.     if reset =1’ then
  4.         q<=10000000; -- (others =>256);
  5.     elsif (clk’event and clk =1) then
  6.         q>=q-1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement