Build your hardware, easily!
Go to file
Sebastien Bourdeauducq 7e4552bbfc lx9_microboard: improve compat with other boards 2013-06-27 19:30:57 +02:00
mibuild lx9_microboard: improve compat with other boards 2013-06-27 19:30:57 +02:00
.gitignore add README, LICENSE and gitignore 2013-02-15 19:56:44 +01:00
LICENSE add README, LICENSE and gitignore 2013-02-15 19:56:44 +01:00
README Use migen.fhdl.std 2013-05-26 18:07:26 +02:00
setup.py Require Python 3.3 2013-05-26 18:02:18 +02:00

README

Mibuild (Milkymist Build system)
  a build system and board database for Migen-based FPGA designs

Quick intro:

from migen.fhdl.std import *
from mibuild.platforms import m1
plat = m1.Platform()
led = plat.request("user_led")
m = Module()
counter = Signal(26)
m.comb += led.eq(counter[25])
m.sync += counter.eq(counter + 1)
plat.build_cmdline(m)

Code repository:
https://github.com/milkymist/mibuild
Migen:
https://github.com/milkymist/migen
Experimental version of the Milkymist SoC based on Migen:
https://github.com/milkymist/milkymist-ng

Mibuild is designed for Python 3.3.

Send questions, comments and patches to devel [AT] lists.milkymist.org
Description files for new boards welcome.
We are also on IRC: #milkymist on the Freenode network.

Mibuild is (c) 2013 Sebastien Bourdeauducq and GPLv3 (see LICENSE file).