Skip to content
Snippets Groups Projects
Commit 6237d5a3 authored by Strozzi's avatar Strozzi
Browse files

joj?

parents 73de7bc5 f447c64b
No related branches found
No related tags found
No related merge requests found
Pipeline #
before_script:
- apt-get update || echo joj
- apt-get install build-essential -y
- apt-get install zlib1g-dev
- dpkg -i debs/gnat-4.8-base_4.8.2-8ubuntu3_amd64.deb
- dpkg -i debs/libmpc2_0.9-4_amd64.deb
- dpkg -i debs/libgnat-4.8_4.8.2-8ubuntu3_amd64.deb
- dpkg -i debs/ghdl_0.33-1jessie1_amd64.deb || apt-get install -f -y
- dpkg -i debs/ghdl_0.33-1jessie1_amd64.deb
make:
script:
- make all
tags:
- debian
Makefile 0 → 100644
all:
ghdl -a --ieee=synopsys -fexplicit *.vhd
ghdl -e --ieee=synopsys -fexplicit TB_MAIN_PROCESSOR
./tb_main_processor --stop-time=300ns --vcd=tb.vcd
gtk: all
gtkwave tb.vcd
clean:
rm *.o *.cf *.vcd
......@@ -44,7 +44,7 @@ begin
begin
if reset = '1' then
ram <= ((others => (others=>'0')));
ram <= (others => (others=>'0'));
elsif clk'event and clk = '1' then
if memwrite = '1' then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment