view python/asm.py @ 381:6df89163e114

Fix section and ldr pseudo instruction
author Windel Bouwman
date Sat, 26 Apr 2014 17:41:56 +0200
parents 6f4753202b9a
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'])