Compare commits
4 commits
bbb3ec5d30
...
c2673e35bf
Author | SHA1 | Date | |
---|---|---|---|
c2673e35bf | |||
327af10b6a | |||
3cbc47eb95 | |||
ed34337a56 |
4 changed files with 25 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
/work/
|
/work/
|
||||||
*.o
|
*.o
|
||||||
|
__pycache__
|
||||||
|
|
6
firmware/Cargo.toml
Normal file
6
firmware/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "firmware"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
[dependencies]
|
3
firmware/src/main.rs
Normal file
3
firmware/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
|
@ -36,7 +36,7 @@ entity arty_a7 is
|
||||||
-- when necessary
|
-- when necessary
|
||||||
pmod_a : out std_logic_vector(7 downto 0);
|
pmod_a : out std_logic_vector(7 downto 0);
|
||||||
pmod_b : out std_logic_vector(7 downto 0);
|
pmod_b : out std_logic_vector(7 downto 0);
|
||||||
pmod_c : in std_logic_vector(7 downto 0);
|
pmod_c : out std_logic_vector(7 downto 0);
|
||||||
pmod_d : out std_logic_vector(7 downto 0);
|
pmod_d : out std_logic_vector(7 downto 0);
|
||||||
|
|
||||||
clock_100mhz : in std_logic;
|
clock_100mhz : in std_logic;
|
||||||
|
@ -320,9 +320,20 @@ begin
|
||||||
|
|
||||||
sys_reset <= not pll_locked or not n_reset;
|
sys_reset <= not pll_locked or not n_reset;
|
||||||
|
|
||||||
pmod_a <= drivers(7 downto 0);
|
pmod_a <= "00" & drivers(5 downto 0);
|
||||||
pmod_b <= drivers(15 downto 8);
|
pmod_b <= "00" & drivers(11 downto 6);
|
||||||
pmod_d <= drivers(23 downto 16);
|
|
||||||
|
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);
|
||||||
|
|
||||||
sender: process(sys_clk)
|
sender: process(sys_clk)
|
||||||
begin
|
begin
|
||||||
|
|
Loading…
Reference in a new issue