Skip to content
Snippets Groups Projects
Commit 980b0ebd authored by Florent Kermarrec's avatar Florent Kermarrec
Browse files

targets/de10lite: rename VideoSoC to VGASoC (to avoid confusion with VideoSoC...

targets/de10lite: rename VideoSoC to VGASoC (to avoid confusion with VideoSoC as used on Video designs with framebuffer)
parent 10e5248b
No related branches found
No related tags found
No related merge requests found
......@@ -102,9 +102,9 @@ class BaseSoC(SoCSDRAM):
geom_settings = sdram_module.geom_settings,
timing_settings = sdram_module.timing_settings)
# VideoSoC ------------------------------------------------------------------------------------------
# VGASoC -------------------------------------------------------------------------------------------
class VideoSoC(BaseSoC):
class VGASoC(BaseSoC):
mem_map = {
"terminal": 0x30000000,
}
......@@ -134,11 +134,10 @@ def main():
parser = argparse.ArgumentParser(description="LiteX SoC on DE10 Lite")
builder_args(parser)
soc_sdram_args(parser)
parser.add_argument("--with-vga", action="store_true",
help="enable VGA support")
parser.add_argument("--with-vga", action="store_true", help="enable VGA support")
args = parser.parse_args()
cls = VideoSoC if args.with_vga else BaseSoC
cls = VGASoC if args.with_vga else BaseSoC
soc = cls(**soc_sdram_argdict(args))
builder = Builder(soc, **builder_argdict(args))
builder.build()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment