Rename nMigen to Amaranth HDL.

This commit is contained in:
whitequark 2021-12-10 05:39:50 +00:00
parent 0b28a97ca0
commit 909a3b8be7
200 changed files with 14493 additions and 14451 deletions

View file

@ -1,8 +1,8 @@
# If the design does not create a "sync" clock domain, it is created by the nMigen build system
# If the design does not create a "sync" clock domain, it is created by the Amaranth build system
# using the platform default clock (and default reset, if any).
from nmigen import *
from nmigen_boards.ice40_hx1k_blink_evn import *
from amaranth import *
from amaranth_boards.ice40_hx1k_blink_evn import *
class Blinky(Elaboratable):

View file

@ -2,8 +2,8 @@
# explicitly, which overrides the default behavior. Any other clock domains could also be
# independently created in addition to the main "sync" domain.
from nmigen import *
from nmigen_boards.ice40_hx1k_blink_evn import *
from amaranth import *
from amaranth_boards.ice40_hx1k_blink_evn import *
class BlinkyWithDomain(Elaboratable):