view ide/runbuild.py @ 18:6129643f5c34

Fixed interrupt issue, ds, es, ss, fs and gs were not initialized to 0
author windel
date Sun, 20 Nov 2011 20:35:51 +0100
parents de004f808e56
children
line wrap: on
line source

import sys

# Compiler imports:
from compiler.compiler import Compiler
from project import Project

if __name__ == '__main__':
   if len(sys.argv) < 2:
      print('Use {0} projectfile'.format(sys.argv[0]))
      sys.exit(-1)
   filename = sys.argv[1]
   project = Project()
   project.load(filename)
   pc = Compiler()
   pc.compileProject(project)