Advertisement
runsiv

process

May 24th, 2015
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VHDL 0.31 KB | None | 0 0
  1. data_conv : process (
  2.     SYSCLK
  3.     )
  4. begin
  5.     if (rising_edge(SYSCLK)) then
  6.         if (reset(reset'left) ='1') then
  7.         --  ACCEL_Z <= (others => '0');
  8.         elsif( drdy ='1') then
  9.             XX <= accel_x (11 downto 4);
  10.             YY <= accel_y (11 downto 4);
  11.             ZZ <= accel_z (11 downto 4);
  12.         end if;
  13.     end if;
  14. end process data_conv;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement