This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import os, sys | |
import argparse | |
def main(): | |
parser = argparse.ArgumentParser(description='Convert VTxx BIN format to NES 2.0 format') | |
parser.add_argument('infile', metavar='infile', type=str, nargs=1, | |
help='Input .bin file') | |
parser.add_argument('-m', '--mapper', action='store', default=256, | |
help='NES 2.0 mapper number (default: 256)') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[options] | |
mode prove | |
depth 50 | |
[engines] | |
abc pdr | |
[script] | |
read_verilog -formal lfsr_equiv.v lfsr_fib.v lfsr_gal.v | |
prep -top lfsr_equiv -nordff |
NewerOlder