1 |
|
/* |
2 |
|
* mon.cpp - cxmon main program |
3 |
|
* |
4 |
< |
* cxmon (C) 1997-2003 Christian Bauer, Marc Hellwig |
4 |
> |
* cxmon (C) 1997-2004 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 |
258 |
|
static void read_line(char *prompt) |
259 |
|
{ |
260 |
|
#ifdef HAVE_LIBREADLINE |
261 |
– |
static char *line_read = NULL; |
262 |
– |
|
261 |
|
if (input) |
262 |
|
free(input); |
263 |
|
input = readline(prompt); |
813 |
|
else { |
814 |
|
var_map::const_iterator v = vars.begin(), end = vars.end(); |
815 |
|
for (v=vars.begin(); v!=end; ++v) |
816 |
< |
fprintf(monout, "%s = %08x\n", v->first.c_str(), v->second); |
816 |
> |
fprintf(monout, "%s = %08lx\n", v->first.c_str(), v->second); |
817 |
|
} |
818 |
|
|
819 |
|
} else if (mon_token == T_NAME) { |
1187 |
|
while (!done) { |
1188 |
|
if (interactive) { |
1189 |
|
char prompt[16]; |
1190 |
< |
sprintf(prompt, "[%0*lx]-> ", 2 * sizeof(mon_dot_address), mon_dot_address); |
1190 |
> |
sprintf(prompt, "[%0*lx]-> ", int(2 * sizeof(mon_dot_address)), mon_dot_address); |
1191 |
|
read_line(prompt); |
1192 |
|
if (!input) { |
1193 |
|
done = true; |