Advertisement
Guest User

Untitled

a guest
May 21st, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if grupa = "00" then
  2. cifra := input(15 downto 12);
  3. grupa <= "01";
  4. Pozitie <= "01111111";
  5. elsif grupa = "01" then
  6. cifra := input(11 downto 8);
  7. grupa <= "10";
  8. Pozitie <= "10111111";
  9. elsif grupa = "10" then
  10. cifra := input(7 downto 4);
  11. grupa <= "11";
  12. Pozitie <= "11011111";
  13. elsif grupa = "11" then
  14. cifra := input(3 downto 0);
  15. grupa <= "00";
  16. Pozitie <= "11101111";
  17. end if;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement