targets: fix mlabs_video FramebufferSoC
This commit is contained in:
parent
473997df26
commit
02ef1dc95a
|
@ -142,7 +142,7 @@ class FramebufferSoC(MiniSoC):
|
||||||
def __init__(self, platform, **kwargs):
|
def __init__(self, platform, **kwargs):
|
||||||
MiniSoC.__init__(self, platform, **kwargs)
|
MiniSoC.__init__(self, platform, **kwargs)
|
||||||
pads_vga, pads_dvi = get_vga_dvi(platform)
|
pads_vga, pads_dvi = get_vga_dvi(platform)
|
||||||
self.submodules.fb = framebuffer.Framebuffer(pads_vga, pads_dvi, self.lasmixbar.get_master())
|
self.submodules.fb = framebuffer.Framebuffer(pads_vga, pads_dvi, self.sdram.crossbar.get_master())
|
||||||
add_vga_tig(platform, self.fb)
|
add_vga_tig(platform, self.fb)
|
||||||
|
|
||||||
default_subtarget = FramebufferSoC
|
default_subtarget = FramebufferSoC
|
||||||
|
|
Loading…
Reference in New Issue