gateware: fix some issues introduced with cleanup

This commit is contained in:
David Lenfesty 2023-01-29 16:54:14 -07:00
parent dbf81c4baf
commit 6a4a9784e3
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,6 @@
from amaranth import *
from amaranth_soc.wishbone import *
from amaranth_soc.memory import *
class LEDPeripheral(Elaboratable, Interface):

View File

@ -10,6 +10,9 @@ from minerva.core import Minerva
from typing import List
from argparse import ArgumentParser
from memory import *
from led import *
# To change clock domain of a module:
# new_thing = DomainRenamer("new_clock")(MyElaboratable())