Mercurial > lcfOS
view python/asm.py @ 184:fe2b72381a83
Added testset for pyy
author | Windel Bouwman |
---|---|
date | Fri, 24 May 2013 16:13:23 +0200 |
parents | 5e1dd04cb61c |
children |
line wrap: on
line source
#!/usr/bin/python # Assembler import sys, argparse import pdb import libasm parser = argparse.ArgumentParser(description="Assembler") pdb.set_trace() parser.add_argument('sourcefile', type=argparse.FileType('r'), help='the source file to assemble') args = parser.parse_args() a = libasm.Assembler() obj = a.assemble(args.sourcefile.read()) print('object:', obj)