Address review comments.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2018-10-22 13:09:38 -07:00
parent 42addd98a2
commit d9fc687524
1 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,11 @@
#!/usr/bin/env python3
'''
Takes input FASM and outputs optionally canonical FASM.
Pretty print FASM.
Sanity checks FASM against prjxray database.
Can output canonical FASM.
In the future may support other formatting options.
'''
import os
@ -62,7 +67,7 @@ def main():
parser = argparse.ArgumentParser(
description=
'Read FASM file, check against database, and output optionally canonical FASM.'
'Pretty print a FASM file.'
)
database_dir = os.getenv("XRAY_DATABASE_DIR")