web-legacy/migen.html

56 lines
3.5 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Milkymist Labs</title>
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
<link rel="icon" type="image/png" href="favicon.png" />
</head>
<body>
<div id="logo"><img src="milkymist.svg">Milkymist Labs <a href="http://ehsm.eu"><img src="ehsm_web_banner_small.gif" style="float:right; border: 1px solid gray; margin-right: 5px;"></a></div>
<div id="topmenu"><a href="mmone.html">Products</a> <a href="mmsoc.html" class="selected">Technology</a> <a href="community.html">Community</a></div>
<div id="leftmenu">
<div id="leftmenutitle">Current</div>
<ul>
<li><a href="mmsoc.html">Milkymist SoC</a></li>
<li><a href="flickernoise.html">Flickernoise</a></li>
</ul>
<div id="leftmenutitle">In development</div>
<ul>
<li><a href="migen.html">Migen</a></li>
<li><a href="mng.html">Milkymist-ng</a></li>
</ul>
</div>
<div id="main">
<div id="illus"><img src="migen.svg"></div>
<div id="title">Migen</div>
<p>Started late 2011 and still experimental, Migen (<b>Mi</b>lkymist <b>gen</b>erator) is a Python-based tool that aims at automating further the VLSI design process.</p>
<p>Despite being faster than schematics entry, hardware design with Verilog and VHDL remains tedious and inefficient for several reasons. The event-driven model introduces issues and manual coding that are unnecessary for synchronous circuits, which represent the lion's share of today's logic designs. Counter-intuitive arithmetic rules result in steeper learning curves and provide a fertile ground for subtle bugs in designs. Finally, support for procedural generation of logic (metaprogramming) through "generate" statements is very limited and restricts the ways code can be made generic, reused and organized.</p>
<p>To address those issues, we have developed the Migen FHDL library that 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.</p>
<p>Other Migen libraries are built on FHDL and provide various tools such as a system-on-chip interconnect infrastructure, a dataflow programming system, a more traditional high-level synthesizer that compiles Python routines into state machines with datapaths, and a simulator that allows test benches to be written in Python.</p>
<p>Migen is the foundation for the <a href="mng.html">next-generation Milkymist SoC</a>, and is also used in the <a href="http://www.rhinoplatform.org">Rhino</a> software-defined radio platform.</p>
<p>You can find the Migen source <a href="http://github.com/milkymist/migen">here</a>, released under a <a href="https://github.com/milkymist/migen/blob/master/LICENSE">permissive license</a>.</p>
<p>
<b>Documentation</b><br />
- <a href="migen.pdf">User guide</a><br />
- <a href="migen-tutorial.pdf">Tutorial: An introduction to Migen</a><br />
- <a href="migen_fpgaworld.pdf">FPGAworld 2012 slides</a>
</p>
</div>
</body>
</html>