1 |
|
/* |
2 |
< |
* mon.cpp - Machine language monitor |
2 |
> |
* mon.cpp - mon main program |
3 |
|
* |
4 |
< |
* (C) 1997-1999 Christian Bauer |
4 |
> |
* mon (C) 1997-2000 Christian Bauer, Marc Hellwig |
5 |
> |
* |
6 |
> |
* This program is free software; you can redistribute it and/or modify |
7 |
> |
* it under the terms of the GNU General Public License as published by |
8 |
> |
* the Free Software Foundation; either version 2 of the License, or |
9 |
> |
* (at your option) any later version. |
10 |
> |
* |
11 |
> |
* This program is distributed in the hope that it will be useful, |
12 |
> |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
> |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
> |
* GNU General Public License for more details. |
15 |
> |
* |
16 |
> |
* You should have received a copy of the GNU General Public License |
17 |
> |
* along with this program; if not, write to the Free Software |
18 |
> |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 |
|
*/ |
20 |
|
|
21 |
< |
#include <sys/types.h> |
22 |
< |
#include <netinet/in.h> |
21 |
> |
#include "sysdeps.h" |
22 |
> |
|
23 |
|
#include <stdio.h> |
24 |
|
#include <stdlib.h> |
11 |
– |
#include <string.h> |
25 |
|
#include <signal.h> |
26 |
|
#include <ctype.h> |
14 |
– |
#include <unistd.h> |
15 |
– |
#include <errno.h> |
27 |
|
|
28 |
+ |
#ifdef HAVE_READLINE_READLINE_H |
29 |
+ |
extern "C" { |
30 |
+ |
#include <readline/readline.h> |
31 |
+ |
} |
32 |
+ |
#endif |
33 |
+ |
|
34 |
+ |
#ifdef HAVE_READLINE_HISTORY_H |
35 |
|
extern "C" { |
36 |
< |
extern char *readline(char *prompt); |
19 |
< |
extern void add_history(char *str); |
36 |
> |
#include <readline/history.h> |
37 |
|
} |
38 |
+ |
#endif |
39 |
|
|
40 |
|
#include "mon.h" |
41 |
|
#include "mon_cmd.h" |
42 |
|
|
43 |
+ |
#ifndef VERSION |
44 |
+ |
#define VERSION "2" |
45 |
+ |
#endif |
46 |
+ |
|
47 |
|
|
48 |
|
// Buffer we're operating on |
49 |
|
bool mon_use_real_mem = false; |
199 |
|
* Access to buffer |
200 |
|
*/ |
201 |
|
|
202 |
< |
uint32 mon_read_byte(uint32 adr) |
202 |
> |
uint32 (*mon_read_byte)(uint32 adr); |
203 |
> |
|
204 |
> |
uint32 mon_read_byte_buffer(uint32 adr) |
205 |
|
{ |
206 |
< |
if (mon_use_real_mem) |
183 |
< |
return *(uint8 *)adr; |
184 |
< |
else |
185 |
< |
return mem[adr % mon_mem_size]; |
206 |
> |
return mem[adr % mon_mem_size]; |
207 |
|
} |
208 |
|
|
209 |
< |
void mon_write_byte(uint32 adr, uint32 b) |
209 |
> |
uint32 mon_read_byte_real(uint32 adr) |
210 |
|
{ |
211 |
< |
if (mon_use_real_mem) |
212 |
< |
*(uint8 *)adr = b; |
213 |
< |
else |
214 |
< |
mem[adr % mon_mem_size] = b; |
211 |
> |
return *(uint8 *)adr; |
212 |
> |
} |
213 |
> |
|
214 |
> |
void (*mon_write_byte)(uint32 adr, uint32 b); |
215 |
> |
|
216 |
> |
void mon_write_byte_buffer(uint32 adr, uint32 b) |
217 |
> |
{ |
218 |
> |
mem[adr % mon_mem_size] = b; |
219 |
> |
} |
220 |
> |
|
221 |
> |
void mon_write_byte_real(uint32 adr, uint32 b) |
222 |
> |
{ |
223 |
> |
*(uint8 *)adr = b; |
224 |
|
} |
225 |
|
|
226 |
|
uint32 mon_read_half(uint32 adr) |
227 |
|
{ |
228 |
< |
if (mon_use_real_mem) |
199 |
< |
return ntohs(*(uint16 *)adr); |
200 |
< |
else |
201 |
< |
return mem[adr % mon_mem_size] << 8 | mem[(adr+1) % mon_mem_size]; |
228 |
> |
return (mon_read_byte(adr) << 8) | mon_read_byte(adr+1); |
229 |
|
} |
230 |
|
|
231 |
|
void mon_write_half(uint32 adr, uint32 w) |
232 |
|
{ |
233 |
< |
if (mon_use_real_mem) |
234 |
< |
*(uint16 *)adr = htons(w); |
208 |
< |
else { |
209 |
< |
mem[adr % mon_mem_size] = w >> 8; |
210 |
< |
mem[(adr+1) % mon_mem_size] = w; |
211 |
< |
} |
233 |
> |
mon_write_byte(adr, w >> 8); |
234 |
> |
mon_write_byte(adr+1, w); |
235 |
|
} |
236 |
|
|
237 |
|
uint32 mon_read_word(uint32 adr) |
238 |
|
{ |
239 |
< |
if (mon_use_real_mem) |
217 |
< |
return ntohl(*(uint32 *)adr); |
218 |
< |
else |
219 |
< |
return mon_read_byte(adr) << 24 | mon_read_byte(adr+1) << 16 | mon_read_byte(adr+2) << 8 | mon_read_byte(adr+3); |
239 |
> |
return (mon_read_byte(adr) << 24) | (mon_read_byte(adr+1) << 16) | (mon_read_byte(adr+2) << 8) | mon_read_byte(adr+3); |
240 |
|
} |
241 |
|
|
242 |
|
void mon_write_word(uint32 adr, uint32 l) |
243 |
|
{ |
244 |
< |
if (mon_use_real_mem) |
245 |
< |
*(uint32 *)adr = htonl(l); |
246 |
< |
else { |
247 |
< |
mem[adr % mon_mem_size] = l >> 24; |
228 |
< |
mem[(adr+1) % mon_mem_size] = l >> 16; |
229 |
< |
mem[(adr+2) % mon_mem_size] = l >> 8; |
230 |
< |
mem[(adr+3) % mon_mem_size] = l; |
231 |
< |
} |
244 |
> |
mon_write_byte(adr, l >> 24); |
245 |
> |
mon_write_byte(adr+1, l >> 16); |
246 |
> |
mon_write_byte(adr+2, l >> 8); |
247 |
> |
mon_write_byte(adr+3, l); |
248 |
|
} |
249 |
|
|
250 |
|
|
254 |
|
|
255 |
|
static void read_line(char *prompt) |
256 |
|
{ |
257 |
+ |
#ifdef HAVE_LIBREADLINE |
258 |
|
static char *line_read = NULL; |
259 |
|
|
260 |
|
if (line_read) { |
269 |
|
|
270 |
|
strncpy(in_ptr = input, line_read, INPUT_LENGTH); |
271 |
|
input[INPUT_LENGTH-1] = 0; |
272 |
+ |
#else |
273 |
+ |
fprintf(monout, prompt); |
274 |
+ |
fflush(monout); |
275 |
+ |
fgets(in_ptr = input, INPUT_LENGTH, monin); |
276 |
+ |
char *s = strchr(input, '\n'); |
277 |
+ |
if (s != NULL) |
278 |
+ |
*s = 0; |
279 |
+ |
#endif |
280 |
|
} |
281 |
|
|
282 |
|
|
834 |
|
fprintf(monout, "No variables defined\n"); |
835 |
|
else |
836 |
|
for (Variable *v=first_var; v; v=v->next) |
837 |
< |
fprintf(monout, "%s = %08lx\n", v->name, v->value); |
837 |
> |
fprintf(monout, "%s = %08x\n", v->name, v->value); |
838 |
|
|
839 |
|
} else if (mon_token == T_NAME) { |
840 |
|
char var_name[256]; |
927 |
|
} |
928 |
|
|
929 |
|
if (mon_token == T_END) { |
930 |
< |
fprintf(monerr, "Buffer size: %08lx bytes\n", mon_mem_size); |
930 |
> |
fprintf(monerr, "Buffer size: %08x bytes\n", mon_mem_size); |
931 |
|
return; |
932 |
|
} |
933 |
|
|
939 |
|
} |
940 |
|
|
941 |
|
if ((mem = (uint8 *)realloc(mem, size)) != NULL) |
942 |
< |
fprintf(monerr, "Buffer size: %08lx bytes\n", mon_mem_size = size); |
942 |
> |
fprintf(monerr, "Buffer size: %08x bytes\n", mon_mem_size = size); |
943 |
|
else |
944 |
|
fprintf(monerr, "Unable to reallocate buffer\n"); |
945 |
|
} |
981 |
|
read_func = mon_read_word; |
982 |
|
write_func = mon_write_word; |
983 |
|
break; |
984 |
+ |
default: |
985 |
+ |
abort(); |
986 |
+ |
break; |
987 |
|
} |
988 |
|
|
989 |
|
while (adr<=end_adr) { |
1066 |
|
mon_add_command("@", reallocate, "@ [size] Reallocate buffer\n"); |
1067 |
|
mon_add_command("i", ascii_dump, "i [start [end]] ASCII memory dump\n"); |
1068 |
|
mon_add_command("m", memory_dump, "m [start [end]] Hex/ASCII memory dump\n"); |
1069 |
+ |
mon_add_command("b", binary_dump, "b [start [end]] Binary memory dump\n"); |
1070 |
|
mon_add_command("d", disassemble_ppc, "d [start [end]] Disassemble PowerPC code\n"); |
1071 |
|
mon_add_command("d65", disassemble_6502, "d65 [start [end]] Disassemble 6502 code\n"); |
1072 |
|
mon_add_command("d68", disassemble_680x0, "d68 [start [end]] Disassemble 680x0 code\n"); |
1092 |
|
mon_add_command("]", save_data, "] start size \"file\" Save data to file\n"); |
1093 |
|
mon_add_command("set", set_var, "set [var[=value]] Set/clear/show variables\n"); |
1094 |
|
mon_add_command("cv", clear_vars, "cv Clear all variables\n"); |
1095 |
+ |
|
1096 |
+ |
mon_read_byte = NULL; |
1097 |
+ |
mon_write_byte = NULL; |
1098 |
|
} |
1099 |
|
|
1100 |
|
|
1140 |
|
interactive = (argc == 0); |
1141 |
|
} |
1142 |
|
|
1143 |
+ |
// Set up memory access functions if not supplied by the user |
1144 |
+ |
if (mon_read_byte == NULL) { |
1145 |
+ |
if (mon_use_real_mem) |
1146 |
+ |
mon_read_byte = mon_read_byte_real; |
1147 |
+ |
else |
1148 |
+ |
mon_read_byte = mon_read_byte_buffer; |
1149 |
+ |
} |
1150 |
+ |
if (mon_write_byte == NULL) { |
1151 |
+ |
if (mon_use_real_mem) |
1152 |
+ |
mon_write_byte = mon_write_byte_real; |
1153 |
+ |
else |
1154 |
+ |
mon_write_byte = mon_write_byte_buffer; |
1155 |
+ |
} |
1156 |
+ |
|
1157 |
|
// Allocate buffer |
1158 |
|
if (!mon_use_real_mem) { |
1159 |
|
mon_mem_size = 0x100000; |
1161 |
|
|
1162 |
|
// Print banner |
1163 |
|
if (interactive) |
1164 |
< |
fprintf(monerr, "\n *** mon V%d.%d by Christian Bauer ***\n" |
1165 |
< |
" *** Press 'h' for help ***\n\n", MON_VERSION, MON_REVISION); |
1164 |
> |
fprintf(monerr, "\n *** mon V" VERSION " by Christian Bauer and Marc Hellwig ***\n" |
1165 |
> |
" *** Press 'h' for help ***\n\n"); |
1166 |
|
} |
1167 |
|
|
1168 |
|
init_abort(); |
1171 |
|
while (!done) { |
1172 |
|
if (interactive) { |
1173 |
|
char prompt[16]; |
1174 |
< |
sprintf(prompt, "[%08lx]-> ", mon_dot_address); |
1174 |
> |
sprintf(prompt, "[%08x]-> ", mon_dot_address); |
1175 |
|
read_line(prompt); |
1176 |
|
} else { |
1177 |
|
if (argc == 0) { |