aboutsummaryrefslogtreecommitdiffstats
path: root/examples/icestick/leds.vhdl
diff options
context:
space:
mode:
authorAimylios <20016942+aimylios@users.noreply.github.com>2020-04-19 14:20:37 +0200
committertgingold <tgingold@users.noreply.github.com>2020-04-19 16:08:35 +0200
commit8bb8453af7acd34705a449cac9cd8427d6db43ba (patch)
tree9243aaa5ec9c4f91abd7291af432dbba41772815 /examples/icestick/leds.vhdl
parentd941c8f65bbbb90f97c17e26b5610624c2198b10 (diff)
downloadghdl-yosys-plugin-8bb8453af7acd34705a449cac9cd8427d6db43ba.tar.gz
ghdl-yosys-plugin-8bb8453af7acd34705a449cac9cd8427d6db43ba.tar.bz2
ghdl-yosys-plugin-8bb8453af7acd34705a449cac9cd8427d6db43ba.zip
Improve examples for Lattice iCEstick
- move "leds" examples to subdirectory - add Makefile - add *.json files to .gitignore - adjust README.md and fix some typos
Diffstat (limited to 'examples/icestick/leds.vhdl')
-rw-r--r--examples/icestick/leds.vhdl16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/icestick/leds.vhdl b/examples/icestick/leds.vhdl
deleted file mode 100644
index 95aa5cf..0000000
--- a/examples/icestick/leds.vhdl
+++ /dev/null
@@ -1,16 +0,0 @@
-library ieee;
-use ieee.std_logic_1164.all;
-use ieee.numeric_std.all;
-
--- Led positions
---
--- I D3
--- r
--- D D2 D5 D4
--- A
--- D1
---
-entity leds is
- port (clk : in std_logic;
- led1, led2, led3, led4, led5 : out std_logic);
-end leds;