1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-14 13:29:28 +00:00

Added monitor shortcut "a" for "assemble".

This commit is contained in:
Mike Naberezny 2009-08-10 17:38:57 -07:00
parent c73617ef37
commit de52e95b96
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
Next Release
- Added monitor shortcut "a" for "assemble".
- Fixed that ASL would not properly set the Z flag. Closes #7.
0.5 (2009-08-06)
- Fixed signatures of getc/putc callbacks in monitor that were broken

View File

@ -50,6 +50,7 @@ class Monitor(cmd.Cmd):
def _add_shortcuts(self):
self._shortcuts = {'~': 'tilde',
'?': 'help',
'a': 'assemble',
'al': 'add_label',
'd': 'disassemble',
'dl': 'delete_label',