#!/usr/bin/env python3 import configparser import sys def print_help(): print("Unified FPGA synthesizer frontend\r\n(c) Joppe Blondel - 2022\r\n") print(f"Usage: {sys.argv[0]} [ OPTIONS ] target") print("") print("Options:") print(" -h Show this help message") print(" -c Configuration file, defaults to project.cfg") if __name__=="__main__": # Parse arguments i = 1 nextarg = None configpath = 'project.cfg' target = '' while i