Skip to content

Instantly share code, notes, and snippets.

View chipmuenk's full-sized avatar
😸

Christian Münker chipmuenk

😸
View GitHub Profile
from nmigen import *
from nmigen.cli import main
class Blinky(Elaboratable):
def __init__(self):
self.led = Signal()
def elaborate(self, platform):
m = Module()