mirror of
https://git.sr.ht/~kivikakk/niar
synced 2024-12-22 23:02:24 +00:00
14 lines
244 B
Python
14 lines
244 B
Python
|
import niar
|
||
|
|
||
|
from . import rtl
|
||
|
from .targets import cxxrtl, icebreaker, ulx3s
|
||
|
|
||
|
__all__ = ["NewProject"]
|
||
|
|
||
|
|
||
|
class NewProject(niar.Project):
|
||
|
name = "newproject"
|
||
|
top = rtl.Top
|
||
|
targets = [icebreaker, ulx3s]
|
||
|
cxxrtl_targets = [cxxrtl]
|