annotate pycontroller.py @ 42:792da050d8c4 tip

more dox
author james <jb302@eecs.qmul.ac.uk>
date Tue, 22 Apr 2014 14:25:14 +0100
parents 4411dee34085
children
rev   line source
jb302@34 1 # run this file with 'ipython -i pycontroller.py' for an interactive
jb302@34 2 # debugging python interface
jb302@34 3 from dbg.dbg import controller
jb302@34 4 from subprocess import Popen, PIPE, STDOUT
jb302@34 5
jb302@34 6 emu = controller()
jb302@34 7 emu.Emu = Popen(['bin/emu'], stdout=PIPE, stdin=PIPE, stderr=PIPE)
jb302@34 8