mirror of
https://git.sr.ht/~kivikakk/niar
synced 2024-12-22 23:02:24 +00:00
18 lines
338 B
Python
18 lines
338 B
Python
|
import niar
|
||
|
from amaranth_boards.icebreaker import ICEBreakerPlatform
|
||
|
from amaranth_boards.ulx3s import ULX3S_45F_Platform
|
||
|
|
||
|
__all__ = ["icebreaker", "ulx3s", "cxxrtl"]
|
||
|
|
||
|
|
||
|
class icebreaker(ICEBreakerPlatform):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class ulx3s(ULX3S_45F_Platform):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class cxxrtl(niar.CxxrtlPlatform):
|
||
|
default_clk_frequency = 3_000_000.0
|