aboutsummaryrefslogtreecommitdiff
path: root/python/migen/README
diff options
context:
space:
mode:
authorFernando Lopez Jr <fernando.lopezjr@gmail.com>2017-11-02 18:05:47 +0000
committerDavid Spencer <idlemoor@slackbuilds.org>2017-11-03 23:18:36 +0000
commit2d748ddbf07ec7c97c3c14416735b909c529f16b (patch)
treec4222e0e1378c92389e31166c4c14f4d1c158ac4 /python/migen/README
parentdb58ab495adee7aeef15788f5f9c446a86b124f3 (diff)
python/migen: Added (Milkymist generator).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'python/migen/README')
-rw-r--r--python/migen/README13
1 files changed, 13 insertions, 0 deletions
diff --git a/python/migen/README b/python/migen/README
new file mode 100644
index 0000000000000..9672daf61bb4e
--- /dev/null
+++ b/python/migen/README
@@ -0,0 +1,13 @@
+Migen (Milkymist generator)
+
+A Python toolbox for building complex digital hardware.
+
+The Migen FHDL library replaces the event-driven paradigm with the
+notions of combinatorial and synchronous statements, has arithmetic
+rules that make integers always behave like mathematical integers, and
+most importantly allows the design's logic to be constructed by a
+Python program. This last point enables hardware designers to take
+advantage of the richness of the Python language - object oriented
+programming, function parameters, generators, operator overloading,
+libraries, etc. - to build well organized, reusable and elegant
+designs.