forked from wandwramp/manual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrampmon.tex
116 lines (97 loc) · 1.84 KB
/
wrampmon.tex
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
\newcommand{\witem}[2]
{\item[\src{#1}] #2}
\begin{comment}
load Load an S-Record into RAM
go [address] Begin executing a program
dis [start_address [end_address]] Disassemble instructions from memory
vm [start_address [end_address]] View memory contents
sm <address> <value> Set the value of a memory location
vr [reg] View register contents
sr <reg> <value> Set register contents
sb <address> Set a breakpoint
vb View current breakpoints
rb <address> Remove a breakpoint
cont Continue executing a program
s Step
so Step over
about Display information about this system
help or ? Display this information
\end{comment}
\begin{tabular}{l l}
%\hline
\verb|load|
&
Load an S-Record into RAM
\\
%\hline
\verb|go [address]|
&
Begin executing a program
\\
%\hline
\verb|dis [start_address [end_address]]|
&
Disassemble instructions from memory
\\
%\hline
\verb|vm [start_address [end_address]]|
&
View memory contents
\\
%\hline
\verb|sm <address> <value>|
&
Set the value of a memory location
\\
%\hline
\verb|vr [reg] |
&
View register contents
\\
%\hline
\verb|sr <reg> <value>|
&
Set register contents
\\
%\hline
\verb|sb <address>|
&
Set a breakpoint
\\
%\hline
\verb|vb|
&
View current breakpoints
\\
%\hline
\verb|rb <address>|
&
Remove a breakpoint
\\
%\hline
\verb|cont|
&
Continue executing a program
\\
%\hline
\verb|s|
&
Step
\\
%\hline
\verb|so|
&
Step over
\\
%\hline
\verb|about|
&
Display information about this system
\\
%\hline
\verb|help| or \verb|?|
&
Show this help screen
\\
%\hline
\end{tabular}