litex/targets/versa.py

18 lines
555 B
Python
Raw Normal View History

2015-09-22 12:36:47 -04:00
from migen import *
2015-03-17 14:08:31 -04:00
from migen.genlib.io import CRG
2015-09-25 06:43:20 -04:00
from misoc.integration.soc_core import SoCCore
2015-03-17 14:08:31 -04:00
2015-04-13 10:47:22 -04:00
2015-09-25 06:43:20 -04:00
class BaseSoC(SoCCore):
default_platform = "versa"
def __init__(self, platform, **kwargs):
2015-09-25 06:43:20 -04:00
SoCCore.__init__(self, platform,
clk_freq=100*1000000,
integrated_rom_size=0x8000,
**kwargs)
self.submodules.crg = CRG(platform.request("clk100"), ~platform.request("rst_n"))
self.comb += platform.request("user_led", 0).eq(ResetSignal())
2015-03-17 14:08:31 -04:00
default_subtarget = BaseSoC