ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/mon/src/mon.cpp
(Generate patch)

Comparing mon/src/mon.cpp (file contents):
Revision 1.3 by cebix, 1999-10-05T14:43:41Z vs.
Revision 1.14 by cebix, 2000-10-15T15:07:12Z

# Line 1 | Line 1
1   /*
2 < *  mon.cpp - mon main program
2 > *  mon.cpp - cxmon main program
3   *
4 < *  mon (C) 1997-1999 Christian Bauer, Marc Hellwig
4 > *  cxmon (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
# Line 20 | Line 20
20  
21   #include "sysdeps.h"
22  
23 < #ifdef HAVE_READLINE_READLINE_H
23 > #include <stdio.h>
24 > #include <stdlib.h>
25 > #include <signal.h>
26 > #include <ctype.h>
27 >
28 > #if defined(HAVE_READLINE_H)
29 > extern "C" {
30 > #include <readline.h>
31 > }
32 > #elif defined(HAVE_READLINE_READLINE_H)
33   extern "C" {
34   #include <readline/readline.h>
35   }
36   #endif
37  
38 < #ifdef HAVE_READLINE_HISTORY_H
38 > #if defined(HAVE_HISTORY_H)
39 > extern "C" {
40 > #include <history.h>
41 > }
42 > #elif defined(HAVE_READLINE_HISTORY_H)
43   extern "C" {
44   #include <readline/history.h>
45   }
# Line 34 | Line 47 | extern "C" {
47  
48   #include "mon.h"
49   #include "mon_cmd.h"
50 < #include "version.h"
50 >
51 > #ifndef VERSION
52 > #define VERSION "2"
53 > #endif
54  
55  
56   // Buffer we're operating on
# Line 191 | Line 207 | bool mon_aborted(void)
207   *  Access to buffer
208   */
209  
210 < uint32 mon_read_byte(uint32 adr)
210 > uint32 (*mon_read_byte)(uint32 adr);
211 >
212 > uint32 mon_read_byte_buffer(uint32 adr)
213   {
214 <        if (mon_use_real_mem)
197 <                return *(uint8 *)adr;
198 <        else
199 <                return mem[adr % mon_mem_size];
214 >        return mem[adr % mon_mem_size];
215   }
216  
217 < void mon_write_byte(uint32 adr, uint32 b)
217 > uint32 mon_read_byte_real(uint32 adr)
218   {
219 <        if (mon_use_real_mem)
220 <                *(uint8 *)adr = b;
221 <        else
222 <                mem[adr % mon_mem_size] = b;
219 >        return *(uint8 *)adr;
220 > }
221 >
222 > void (*mon_write_byte)(uint32 adr, uint32 b);
223 >
224 > void mon_write_byte_buffer(uint32 adr, uint32 b)
225 > {
226 >        mem[adr % mon_mem_size] = b;
227 > }
228 >
229 > void mon_write_byte_real(uint32 adr, uint32 b)
230 > {
231 >        *(uint8 *)adr = b;
232   }
233  
234   uint32 mon_read_half(uint32 adr)
235   {
236 <        if (mon_use_real_mem)
213 <                return ntohs(*(uint16 *)adr);
214 <        else
215 <                return mem[adr % mon_mem_size] << 8 | mem[(adr+1) % mon_mem_size];
236 >        return (mon_read_byte(adr) << 8) | mon_read_byte(adr+1);
237   }
238  
239   void mon_write_half(uint32 adr, uint32 w)
240   {
241 <        if (mon_use_real_mem)
242 <                *(uint16 *)adr = htons(w);
222 <        else {
223 <                mem[adr % mon_mem_size] = w >> 8;
224 <                mem[(adr+1) % mon_mem_size] = w;
225 <        }
241 >        mon_write_byte(adr, w >> 8);
242 >        mon_write_byte(adr+1, w);
243   }
244  
245   uint32 mon_read_word(uint32 adr)
246   {
247 <        if (mon_use_real_mem)
231 <                return ntohl(*(uint32 *)adr);
232 <        else
233 <                return mon_read_byte(adr) << 24 | mon_read_byte(adr+1) << 16 | mon_read_byte(adr+2) << 8 | mon_read_byte(adr+3);
247 >        return (mon_read_byte(adr) << 24) | (mon_read_byte(adr+1) << 16) | (mon_read_byte(adr+2) << 8) | mon_read_byte(adr+3);
248   }
249  
250   void mon_write_word(uint32 adr, uint32 l)
251   {
252 <        if (mon_use_real_mem)
253 <                *(uint32 *)adr = htonl(l);
254 <        else {
255 <                mem[adr % mon_mem_size] = l >> 24;
242 <                mem[(adr+1) % mon_mem_size] = l >> 16;
243 <                mem[(adr+2) % mon_mem_size] = l >> 8;
244 <                mem[(adr+3) % mon_mem_size] = l;
245 <        }
252 >        mon_write_byte(adr, l >> 24);
253 >        mon_write_byte(adr+1, l >> 16);
254 >        mon_write_byte(adr+2, l >> 8);
255 >        mon_write_byte(adr+3, l);
256   }
257  
258  
# Line 252 | Line 262 | void mon_write_word(uint32 adr, uint32 l
262  
263   static void read_line(char *prompt)
264   {
265 + #ifdef HAVE_LIBREADLINE
266          static char *line_read = NULL;
267  
268          if (line_read) {
# Line 266 | Line 277 | static void read_line(char *prompt)
277  
278          strncpy(in_ptr = input, line_read, INPUT_LENGTH);
279          input[INPUT_LENGTH-1] = 0;
280 + #else
281 +        fprintf(monout, prompt);
282 +        fflush(monout);
283 +        fgets(in_ptr = input, INPUT_LENGTH, monin);
284 +        char *s = strchr(input, '\n');
285 +        if (s != NULL)
286 +                *s = 0;
287 + #endif
288   }
289  
290  
# Line 1049 | Line 1068 | void mon_init(void)
1068          num_cmds = 0;
1069          cmd_help = NULL;
1070  
1071 <        mon_add_command("??", mon_cmd_list,                     "??                       Show list of commands\n");
1072 <        mon_add_command("ver", version,                         "ver                      Show version\n");
1073 <        mon_add_command("?", print_expr,                        "? expression             Calculate expression\n");
1074 <        mon_add_command("@", reallocate,                        "@ [size]                 Reallocate buffer\n");
1075 <        mon_add_command("i", ascii_dump,                        "i [start [end]]          ASCII memory dump\n");
1076 <        mon_add_command("m", memory_dump,                       "m [start [end]]          Hex/ASCII memory dump\n");
1077 <        mon_add_command("d", disassemble_ppc,           "d [start [end]]          Disassemble PowerPC code\n");
1078 <        mon_add_command("d65", disassemble_6502,        "d65 [start [end]]        Disassemble 6502 code\n");
1079 <        mon_add_command("d68", disassemble_680x0,       "d68 [start [end]]        Disassemble 680x0 code\n");
1080 <        mon_add_command("d80", disassemble_8080,        "d80 [start [end]]        Disassemble 8080 code\n");
1081 <        mon_add_command("d86", disassemble_80x86,       "d86 [start [end]]        Disassemble 80x86 code\n");
1082 <        mon_add_command(":", modify,                            ": start string           Modify memory\n");
1083 <        mon_add_command("f", fill,                                      "f start end string       Fill memory\n");
1084 <        mon_add_command("y", apply_byte,                        "y[b|h|w] start end expr  Apply expression to memory\n");
1071 >        mon_add_command("??", mon_cmd_list,                             "??                       Show list of commands\n");
1072 >        mon_add_command("ver", version,                                 "ver                      Show version\n");
1073 >        mon_add_command("?", print_expr,                                "? expression             Calculate expression\n");
1074 >        mon_add_command("@", reallocate,                                "@ [size]                 Reallocate buffer\n");
1075 >        mon_add_command("i", ascii_dump,                                "i [start [end]]          ASCII memory dump\n");
1076 >        mon_add_command("m", memory_dump,                               "m [start [end]]          Hex/ASCII memory dump\n");
1077 >        mon_add_command("b", binary_dump,                               "b [start [end]]          Binary memory dump\n");
1078 >        mon_add_command("d", disassemble_ppc,                   "d [start [end]]          Disassemble PowerPC code\n");
1079 >        mon_add_command("d65", disassemble_6502,                "d65 [start [end]]        Disassemble 6502 code\n");
1080 >        mon_add_command("d68", disassemble_680x0,               "d68 [start [end]]        Disassemble 680x0 code\n");
1081 >        mon_add_command("d80", disassemble_z80,                 "d80 [start [end]]        Disassemble Z80 code\n");
1082 >        mon_add_command("d86", disassemble_80x86_32,    "d86 [start [end]]        Disassemble 80x86 (32-bit) code\n");
1083 >        mon_add_command("d8086", disassemble_80x86_16,  "d8086 [start [end]]      Disassemble 80x86 (16-bit) code\n");
1084 >        mon_add_command(":", modify,                                    ": start string           Modify memory\n");
1085 >        mon_add_command("f", fill,                                              "f start end string       Fill memory\n");
1086 >        mon_add_command("y", apply_byte,                                "y[b|h|w] start end expr  Apply expression to memory\n");
1087          mon_add_command("yb", apply_byte, NULL);
1088          mon_add_command("yh", apply_half, NULL);
1089          mon_add_command("yw", apply_word, NULL);
1090 <        mon_add_command("t", transfer,                          "t start end dest         Transfer memory\n");
1091 <        mon_add_command("c", compare,                           "c start end dest         Compare memory\n");
1092 <        mon_add_command("h", help_or_hunt,                      "h start end string       Search for byte string\n");
1093 <        mon_add_command("\\", shell_command,            "\\ \"command\"              Execute shell command\n");
1094 <        mon_add_command("ls", mon_exec,                         "ls [args]                List directory contents\n");
1095 <        mon_add_command("rm", mon_exec,                         "rm [args]                Remove file(s)\n");
1096 <        mon_add_command("cp", mon_exec,                         "cp [args]                Copy file(s)\n");
1097 <        mon_add_command("mv", mon_exec,                         "mv [args]                Move file(s)\n");
1098 <        mon_add_command("cd", mon_change_dir,           "cd directory             Change current directory\n");
1099 <        mon_add_command("o", redir_output,                      "o [\"file\"]               Redirect output\n");
1100 <        mon_add_command("[", load_data,                         "[ start \"file\"           Load data from file\n");
1101 <        mon_add_command("]", save_data,                         "] start size \"file\"      Save data to file\n");
1102 <        mon_add_command("set", set_var,                         "set [var[=value]]        Set/clear/show variables\n");
1103 <        mon_add_command("cv", clear_vars,                       "cv                       Clear all variables\n");
1090 >        mon_add_command("t", transfer,                                  "t start end dest         Transfer memory\n");
1091 >        mon_add_command("c", compare,                                   "c start end dest         Compare memory\n");
1092 >        mon_add_command("h", help_or_hunt,                              "h start end string       Search for byte string\n");
1093 >        mon_add_command("\\", shell_command,                    "\\ \"command\"              Execute shell command\n");
1094 >        mon_add_command("ls", mon_exec,                                 "ls [args]                List directory contents\n");
1095 >        mon_add_command("rm", mon_exec,                                 "rm [args]                Remove file(s)\n");
1096 >        mon_add_command("cp", mon_exec,                                 "cp [args]                Copy file(s)\n");
1097 >        mon_add_command("mv", mon_exec,                                 "mv [args]                Move file(s)\n");
1098 >        mon_add_command("cd", mon_change_dir,                   "cd directory             Change current directory\n");
1099 >        mon_add_command("o", redir_output,                              "o [\"file\"]               Redirect output\n");
1100 >        mon_add_command("[", load_data,                                 "[ start \"file\"           Load data from file\n");
1101 >        mon_add_command("]", save_data,                                 "] start size \"file\"      Save data to file\n");
1102 >        mon_add_command("set", set_var,                                 "set [var[=value]]        Set/clear/show variables\n");
1103 >        mon_add_command("cv", clear_vars,                               "cv                       Clear all variables\n");
1104 >
1105 >        mon_read_byte = NULL;
1106 >        mon_write_byte = NULL;
1107   }
1108  
1109  
# Line 1110 | Line 1134 | void mon(int argc, char **argv)
1134          monout = stdout;
1135          monerr = stdout;
1136  
1137 <        if (argc) {
1138 <                // Access real memory if mon was started as "rmon"
1139 <                char *prgname = argv[0];
1140 <                char *lastslash;
1141 <                if ((lastslash = strrchr(prgname, '/')) != NULL)
1142 <                        prgname = lastslash + 1;
1143 <                if (strcmp(prgname, "rmon") == 0)
1137 >        // Make argc/argv point to the actual arguments
1138 >        if (argc)
1139 >                argc--; argv++;
1140 >
1141 >        // Parse arguments
1142 >        mon_macos_mode = false;
1143 >        mon_use_real_mem = false;
1144 >        while (argc > 0) {
1145 >                if (strcmp(argv[0], "-m") == 0)
1146 >                        mon_macos_mode = true;
1147 >                else if (strcmp(argv[0], "-r") == 0)
1148                          mon_use_real_mem = true;
1149 +                else
1150 +                        break;
1151 +                argc--; argv++;
1152 +        }
1153 +        interactive = (argc == 0);
1154  
1155 <                // Make argc/argv point to the actual arguments
1156 <                argc--;
1157 <                argv++;
1158 <                interactive = (argc == 0);
1155 >        // Set up memory access functions if not supplied by the user
1156 >        if (mon_read_byte == NULL) {
1157 >                if (mon_use_real_mem)
1158 >                        mon_read_byte = mon_read_byte_real;
1159 >                else
1160 >                        mon_read_byte = mon_read_byte_buffer;
1161 >        }
1162 >        if (mon_write_byte == NULL) {
1163 >                if (mon_use_real_mem)
1164 >                        mon_write_byte = mon_write_byte_real;
1165 >                else
1166 >                        mon_write_byte = mon_write_byte_buffer;
1167          }
1168  
1169          // Allocate buffer
# Line 1132 | Line 1173 | void mon(int argc, char **argv)
1173  
1174                  // Print banner
1175                  if (interactive)
1176 <                        fprintf(monerr, "\n *** mon V%d.%d by Christian Bauer and Marc Hellwig ***\n"
1177 <                                                        " ***              Press 'h' for help              ***\n\n", VERSION_MAJOR, VERSION_MINOR);
1176 >                        fprintf(monerr, "\n *** cxmon V" VERSION " by Christian Bauer and Marc Hellwig ***\n"
1177 >                                                        " ***               Press 'h' for help               ***\n\n");
1178          }
1179  
1180          init_abort();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines