README: fix quick intro
[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.structure import *
7 from migen.fhdl.module import Module
8 from mibuild.platforms import m1
9 plat = m1.Platform()
10 led = plat.request("user_led")
11 m = Module()
12 counter = Signal(26)
13 m.comb += led.eq(counter[25])
14 m.sync += counter.eq(counter + 1)
15 plat.build_cmdline(m)
16
17 Code repository:
18 https://github.com/milkymist/mibuild
19 Migen:
20 https://github.com/milkymist/migen
21 Experimental version of the Milkymist SoC based on Migen:
22 https://github.com/milkymist/milkymist-ng
23
24 Mibuild is designed for Python 3.
25
26 Send questions, comments and patches to devel [AT] lists.milkymist.org
27 Description files for new boards welcome.
28 We are also on IRC: #milkymist on the Freenode network.
29
30 Mibuild is (c) 2013 Sebastien Bourdeauducq and GPLv3 (see LICENSE file).