Mercurial > lcfOS
view ide/runide.py @ 35:bcb3b68c8147
Added bss end address and load end address to multiboot header
author | windel |
---|---|
date | Mon, 16 Jan 2012 17:38:00 +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_()