mirror of
https://github.com/mnaberez/py65.git
synced 2025-01-02 03:29:26 +00:00
Added monitor shortcut "a" for "assemble".
This commit is contained in:
parent
c73617ef37
commit
de52e95b96
@ -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
|
||||
|
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user