Compare commits
3 commits
c44e94da5d
...
a28816b2e6
Author | SHA1 | Date | |
---|---|---|---|
a28816b2e6 | |||
67aaf86bcc | |||
bbb3ec5d30 |
2 changed files with 4 additions and 16 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
|||
/work/
|
||||
*.o
|
||||
__pycache__
|
||||
|
|
|
@ -36,7 +36,7 @@ entity arty_a7 is
|
|||
-- when necessary
|
||||
pmod_a : out std_logic_vector(7 downto 0);
|
||||
pmod_b : out std_logic_vector(7 downto 0);
|
||||
pmod_c : out std_logic_vector(7 downto 0);
|
||||
pmod_c : in std_logic_vector(7 downto 0);
|
||||
pmod_d : out std_logic_vector(7 downto 0);
|
||||
|
||||
clock_100mhz : in std_logic;
|
||||
|
@ -324,20 +324,9 @@ begin
|
|||
|
||||
sys_reset <= not pll_locked or not n_reset;
|
||||
|
||||
pmod_a <= "00" & drivers(5 downto 0);
|
||||
pmod_b <= "00" & drivers(11 downto 6);
|
||||
|
||||
pmod_c(7) <= '0';
|
||||
pmod_c(6) <= '0';
|
||||
pmod_c(5) <= drivers(17);
|
||||
pmod_c(4) <= drivers(16);
|
||||
pmod_c(3) <= drivers(15);
|
||||
pmod_c(2) <= drivers(14);
|
||||
-- workaround for https://github.com/gatecat/nextpnr-xilinx/issues/42#issuecomment-1183525828
|
||||
pmod_c(1) <= drivers(12);
|
||||
pmod_c(0) <= drivers(13);
|
||||
|
||||
pmod_d <= "00" & drivers(23 downto 18);
|
||||
pmod_a <= drivers(7 downto 0);
|
||||
pmod_b <= drivers(15 downto 8);
|
||||
pmod_d <= drivers(23 downto 16);
|
||||
|
||||
sender: process(sys_clk)
|
||||
begin
|
||||
|
|
Loading…
Reference in a new issue