Change license to BSD
[litex.git] / README
1 Mibuild (Milkymist Build system)
2 a build system and board database for Migen-based FPGA designs
3
4 Quick intro:
5
6 from migen.fhdl.std import *
7 from mibuild.platforms import m1
8 plat = m1.Platform()
9 led = plat.request("user_led")
10 m = Module()
11 counter = Signal(26)
12 m.comb += led.eq(counter[25])
13 m.sync += counter.eq(counter + 1)
14 plat.build_cmdline(m)
15
16 Code repository:
17 https://github.com/milkymist/mibuild
18 Migen:
19 https://github.com/milkymist/migen
20 Experimental version of the Milkymist SoC based on Migen:
21 https://github.com/milkymist/milkymist-ng
22
23 Mibuild is designed for Python 3.3.
24
25 Send questions, comments and patches to devel [AT] lists.milkymist.org
26 Description files for new boards welcome.
27 We are also on IRC: #milkymist on the Freenode network.