| |
Stone
Registered: Oct 2006 Posts: 173 |
Python VICE remote monitor
While testing out the VICE binary monitor interface for another project, I ended up implementing a remote monitor in Python. I don't know if it is of any use to anyone, but feel free to try it out or extend it.
https://github.com/Galfodo/pyvicemon |
|
| |
Monte Carlos
Registered: Jun 2004 Posts: 365 |
Nice |
| |
Repose
Registered: Oct 2010 Posts: 227 |
Thanks for sharing! |
| |
spider-j
Registered: Oct 2004 Posts: 503 |
One question before I take a look: has it ARROW UP/DOWN for history? That's the one thing I truely miss in the telnet interface. |
| |
JackAsser
Registered: Jun 2002 Posts: 2020 |
Quote: One question before I take a look: has it ARROW UP/DOWN for history? That's the one thing I truely miss in the telnet interface.
I wrote a tiny script using bash and readline for history, connected via netcat. :) |
| |
Stone
Registered: Oct 2006 Posts: 173 |
Quoting spider-jOne question before I take a look: has it ARROW UP/DOWN for history? That's the one thing I truely miss in the telnet interface.
I think that may depend on your Python installation (and its implementation of readline) but for me at least, it works out of the box on both Windows and Linux. |