view ide/runide.py @ 14:a58904747019

Added asm interrupt handler things, not yet working
author windel
date Mon, 14 Nov 2011 22:45:55 +0100
parents 92df07bc2081
children
line wrap: on
line source

import sys
from PyQt4.QtGui import QApplication

# Compiler imports:
from compiler.compiler import Compiler
from ide.ide import Ide

if __name__ == '__main__':
   app = QApplication(sys.argv)
   ide = Ide()
   ide.compiler = Compiler()
   ide.show()
   app.exec_()