-
Notifications
You must be signed in to change notification settings - Fork 2
/
Monam_CheatSheet.txt
61 lines (47 loc) · 1.76 KB
/
Monam_CheatSheet.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Monam Shortcuts and Tips
========================
<LA> - Left Amiga Key
<RA> - Right Amiga Key
<C> - Any Control
<LC> - Left Control
<RC> - Right Control
a/b - Press either a or b, both keys work
a-b - Press a AND b, you have to press both keys to trigger the command
Entering addresses
==================
Default is hex, so you don't need to enter a leading '$'.
You can enter also a symbol, or a register like (pc, d0, etc.).
If you really want to get to address $d0 you have to specify it with
the hex value ($d0) otherwise the current address is taken from
register D0 is used.
Example:
<RA>-a
d0 -> set address to value of register D0
<RA>-a
$d0 -> set address to $d0
=============================================================================
<TAB> - Cycle between the windows one after another
<RA>-b - Set breakpoint
Set a breakpoint to the specified address
<RA>-a/m - Set address
When the Dissassembly or Memory window is active, you are asked to enter
an address and the top line is changed to that address. For other windows
this doesn't have an effect.
Example:
<RA>-a
d0 -> set address to value of register D0
<RA>-a
$d0 -> set address to $d0
<RA>-s - split/unsplit(merge) active window
This will split the active window and create a second window of the same type.
i.E when a memory window is active it willc reate another memory window. to
unsplit it, press <RA>-s again.
<C>-z/<C>-y Single step current instruction
<C>-t Execute current instruction
The difference to <C>-z is, that this shortcut steps over instructions
like jsr/bsr while <C>-z will enter the subroutine.
<C>-s Skip instruction
Skips the current instruction as if it were a nop.
<C>-r Run
Starts the execution of the current application until it stops
or a breakpoint is hit