litex/README

30 lines
825 B
Plaintext
Raw Normal View History

2013-02-15 13:56:44 -05:00
Mibuild (Milkymist Build system)
a build system and board database for Migen-based FPGA designs
2013-04-19 08:00:46 -04:00
Quick intro:
2013-02-15 13:56:44 -05:00
2013-05-26 12:07:26 -04:00
from migen.fhdl.std import *
2013-02-15 13:56:44 -05:00
from mibuild.platforms import m1
plat = m1.Platform()
led = plat.request("user_led")
2013-04-19 08:00:46 -04:00
m = Module()
counter = Signal(26)
m.comb += led.eq(counter[25])
m.sync += counter.eq(counter + 1)
plat.build_cmdline(m)
2013-02-15 13:56:44 -05:00
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
2013-05-26 12:02:18 -04:00
Mibuild is designed for Python 3.3.
2013-02-15 13:56:44 -05:00
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).