Mercurial > lcfOS
view python/asm.py @ 392:bb4289c84907
Added some sort of drop event test
author | Windel Bouwman |
---|---|
date | Fri, 16 May 2014 13:05:10 +0200 |
parents | 6df89163e114 |
children |
line wrap: on
line source
#!/usr/bin/env python3 import argparse from ppci.target.target_list import targets from ppci.buildfunctions import assemble if __name__ == '__main__': # When run as main file, try to grab command line arguments: parser = argparse.ArgumentParser(description="Assembler") parser.add_argument('sourcefile', type=argparse.FileType('r'), help='the source file to assemble') args = parser.parse_args() obj = assemble(args.sourcefile, targets['arm'])