/[gxemul]/trunk/src/emul.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/emul.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 30 by dpavlin, Mon Oct 8 16:20:40 2007 UTC revision 42 by dpavlin, Mon Oct 8 16:22:32 2007 UTC
# Line 1  Line 1 
1  /*  /*
2   *  Copyright (C) 2003-2006  Anders Gavare.  All rights reserved.   *  Copyright (C) 2003-2007  Anders Gavare.  All rights reserved.
3   *   *
4   *  Redistribution and use in source and binary forms, with or without   *  Redistribution and use in source and binary forms, with or without
5   *  modification, are permitted provided that the following conditions are met:   *  modification, are permitted provided that the following conditions are met:
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *   *
27   *   *
28   *  $Id: emul.c,v 1.260 2006/07/26 23:21:47 debug Exp $   *  $Id: emul.c,v 1.297 2007/06/15 17:02:37 debug Exp $
29   *   *
30   *  Emulation startup and misc. routines.   *  Emulation startup and misc. routines.
31   */   */
# Line 51  Line 51 
51  #include "mips_cpu_types.h"  #include "mips_cpu_types.h"
52  #include "misc.h"  #include "misc.h"
53  #include "net.h"  #include "net.h"
54  #include "sgi_arcbios.h"  #include "settings.h"
55    #include "timer.h"
56    #include "useremul.h"
57  #include "x11.h"  #include "x11.h"
58    
59    
# Line 66  extern int old_show_trace_tree; Line 68  extern int old_show_trace_tree;
68  extern int old_instruction_trace;  extern int old_instruction_trace;
69  extern int old_quiet_mode;  extern int old_quiet_mode;
70  extern int quiet_mode;  extern int quiet_mode;
71    extern int native_code_translation_enabled;
 extern struct emul *debugger_emul;  
 extern struct diskimage *diskimages[];  
   
 static char *diskimage_types[] = DISKIMAGE_TYPES;  
   
   
 static void print_separator(void)  
 {  
         int i = 79;  
         while (i-- > 0)  
                 debug("-");  
         debug("\n");  
 }  
72    
73    
74  /*  /*
75   *  add_dump_points():   *  add_breakpoints():
76   *   *
77   *  Take the strings breakpoint_string[] and convert to addresses   *  Take the strings breakpoint_string[] and convert to addresses
78   *  (and store them in breakpoint_addr[]).   *  (and store them in breakpoint_addr[]).
79   *   *
80   *  TODO: This function should be moved elsewhere.   *  TODO: This function should be moved elsewhere.
81   */   */
82  static void add_dump_points(struct machine *m)  static void add_breakpoints(struct machine *m)
83  {  {
84          int i;          int i;
85          int string_flag;          int string_flag;
86          uint64_t dp;          uint64_t dp;
87    
88          for (i=0; i<m->n_breakpoints; i++) {          for (i=0; i<m->breakpoints.n; i++) {
89                  string_flag = 0;                  string_flag = 0;
90                  dp = strtoull(m->breakpoint_string[i], NULL, 0);                  dp = strtoull(m->breakpoints.string[i], NULL, 0);
91    
92                  /*                  /*
93                   *  If conversion resulted in 0, then perhaps it is a                   *  If conversion resulted in 0, then perhaps it is a
# Line 107  static void add_dump_points(struct machi Line 96  static void add_dump_points(struct machi
96                  if (dp == 0) {                  if (dp == 0) {
97                          uint64_t addr;                          uint64_t addr;
98                          int res = get_symbol_addr(&m->symbol_context,                          int res = get_symbol_addr(&m->symbol_context,
99                              m->breakpoint_string[i], &addr);                              m->breakpoints.string[i], &addr);
100                          if (!res) {                          if (!res) {
101                                  fprintf(stderr,                                  fprintf(stderr,
102                                      "ERROR! Breakpoint '%s' could not be"                                      "ERROR! Breakpoint '%s' could not be"
103                                          " parsed\n",                                          " parsed\n",
104                                      m->breakpoint_string[i]);                                      m->breakpoints.string[i]);
105                                    exit(1);
106                          } else {                          } else {
107                                  dp = addr;                                  dp = addr;
108                                  string_flag = 1;                                  string_flag = 1;
# Line 129  static void add_dump_points(struct machi Line 119  static void add_dump_points(struct machi
119                                  dp |= 0xffffffff00000000ULL;                                  dp |= 0xffffffff00000000ULL;
120                  }                  }
121    
122                  m->breakpoint_addr[i] = dp;                  m->breakpoints.addr[i] = dp;
123    
124                  debug("breakpoint %i: 0x%llx", i, (long long)dp);                  debug("breakpoint %i: 0x%llx", i, (long long)dp);
125                  if (string_flag)                  if (string_flag)
126                          debug(" (%s)", m->breakpoint_string[i]);                          debug(" (%s)", m->breakpoints.string[i]);
127                  debug("\n");                  debug("\n");
128          }          }
129  }  }
# Line 144  static void add_dump_points(struct machi Line 134  static void add_dump_points(struct machi
134   */   */
135  static void fix_console(void)  static void fix_console(void)
136  {  {
137          console_deinit();          console_deinit_main();
138  }  }
139    
140    
141  /*  /*
142   *  iso_load_bootblock():   *  emul_new():
  *  
  *  Try to load a kernel from an ISO 9660 disk image. iso_type is 1 for  
  *  "CD001" (standard), 2 for "CDW01" (ECMA), and 3 for "CDROM" (Sierra).  
  *  
  *  TODO: This function uses too many magic offsets and so on; it should be  
  *  cleaned up some day.  
143   *   *
144   *  Returns 1 on success, 0 on failure.   *  Returns a reasonably initialized struct emul.
145   */   */
146  static int iso_load_bootblock(struct machine *m, struct cpu *cpu,  struct emul *emul_new(char *name, int id)
         int disk_id, int disk_type, int iso_type, unsigned char *buf,  
         int *n_loadp, char ***load_namesp)  
147  {  {
148          char str[35];          struct emul *e;
         int filenr, i, ofs, dirlen, res = 0, res2, iadd = DEBUG_INDENTATION;  
         int found_dir;  
         uint64_t dirofs;  
         uint64_t fileofs, filelen;  
         unsigned char *dirbuf = NULL, *dp;  
         unsigned char *match_entry = NULL;  
         char *p, *filename_orig;  
         char *filename = strdup(cpu->machine->boot_kernel_filename);  
         unsigned char *filebuf = NULL;  
         char *tmpfname = NULL;  
         char **new_array;  
         int tmpfile_handle;  
   
         if (filename == NULL) {  
                 fatal("out of memory\n");  
                 exit(1);  
         }  
         filename_orig = filename;  
   
         debug("ISO9660 boot:\n");  
         debug_indentation(iadd);  
   
         /*  Volume ID:  */  
         ofs = iso_type == 3? 48 : 40;  
         memcpy(str, buf + ofs, sizeof(str));  
         str[32] = '\0';  i = 31;  
         while (i >= 0 && str[i]==' ')  
                 str[i--] = '\0';  
         if (str[0])  
                 debug("\"%s\"", str);  
         else {  
                 /*  System ID:  */  
                 ofs = iso_type == 3? 16 : 8;  
                 memcpy(str, buf + ofs, sizeof(str));  
                 str[32] = '\0';  i = 31;  
                 while (i >= 0 && str[i]==' ')  
                         str[i--] = '\0';  
                 if (str[0])  
                         debug("\"%s\"", str);  
                 else  
                         debug("(no ID)");  
         }  
   
         debug(":%s\n", filename);  
   
   
         /*  
          *  Traverse the directory structure to find the kernel.  
          */  
   
         dirlen = buf[0x84] + 256*buf[0x85] + 65536*buf[0x86];  
         if (dirlen != buf[0x8b] + 256*buf[0x8a] + 65536*buf[0x89])  
                 fatal("WARNING: Root directory length mismatch?\n");  
   
         dirofs = (int64_t)(buf[0x8c] + (buf[0x8d] << 8) + (buf[0x8e] << 16) +  
             ((uint64_t)buf[0x8f] << 24)) * 2048;  
   
         /*  debug("root = %i bytes at 0x%llx\n", dirlen, (long long)dirofs);  */  
   
         dirbuf = malloc(dirlen);  
         if (dirbuf == NULL) {  
                 fatal("out of memory in iso_load_bootblock()\n");  
                 exit(1);  
         }  
   
         res2 = diskimage_access(m, disk_id, disk_type, 0, dirofs, dirbuf,  
             dirlen);  
         if (!res2) {  
                 fatal("Couldn't read the disk image. Aborting.\n");  
                 goto ret;  
         }  
   
         found_dir = 1;  /*  Assume root dir  */  
         dp = dirbuf; filenr = 1;  
         p = NULL;  
         while (dp < dirbuf + dirlen) {  
                 size_t i, nlen = dp[0];  
                 int x = dp[2] + (dp[3] << 8) + (dp[4] << 16) +  
                     ((uint64_t)dp[5] << 24);  
                 int y = dp[6] + (dp[7] << 8);  
                 char direntry[65];  
   
                 dp += 8;  
   
                 /*  
                  *  As long as there is an \ or / in the filename, then we  
                  *  have not yet found the directory.  
                  */  
                 p = strchr(filename, '/');  
                 if (p == NULL)  
                         p = strchr(filename, '\\');  
   
                 /*  debug("%i%s: %i, %i, \"", filenr, filenr == found_dir?  
                     " [CURRENT]" : "", x, y);  */  
                 for (i=0; i<nlen && i<sizeof(direntry)-1; i++)  
                         if (dp[i]) {  
                                 direntry[i] = dp[i];  
                                 /*  debug("%c", dp[i]);  */  
                         } else  
                                 break;  
                 /*  debug("\"\n");  */  
                 direntry[i] = '\0';  
   
                 /*  A directory name match?  */  
                 if (p != NULL && strncasecmp(filename, direntry, nlen) == 0  
                     && nlen == (size_t)p - (size_t)filename && found_dir == y) {  
                         found_dir = filenr;  
                         filename = p+1;  
                         dirofs = 2048 * (int64_t)x;  
                 }  
   
                 dp += nlen;  
   
                 /*  16-bit aligned lenght:  */  
                 if (nlen & 1)  
                         dp ++;  
   
                 filenr ++;  
         }  
   
         p = strchr(filename, '/');  
         if (p == NULL)  
                 p = strchr(filename, '\\');  
   
         if (p != NULL) {  
                 char *blah = filename_orig;  
   
                 fatal("could not find '%s' in /", filename);  
   
                 /*  Print the first part of the filename:  */  
                 while (blah != filename)  
                         fatal("%c", *blah++);  
                   
                 fatal("\n");  
                 goto ret;  
         }  
   
         /*  debug("dirofs = 0x%llx\n", (long long)dirofs);  */  
   
         /*  Free the old dirbuf, and allocate a new one:  */  
         free(dirbuf);  
         dirbuf = malloc(512);  
         if (dirbuf == NULL) {  
                 fatal("out of memory in iso_load_bootblock()\n");  
                 exit(1);  
         }  
   
         for (;;) {  
                 size_t len, i;  
   
                 /*  Too close to another sector? Then realign.  */  
                 if ((dirofs & 2047) + 70 > 2047) {  
                         dirofs = (dirofs | 2047) + 1;  
                         /*  debug("realign dirofs = 0x%llx\n", dirofs);  */  
                 }  
   
                 res2 = diskimage_access(m, disk_id, disk_type, 0, dirofs,  
                     dirbuf, 256);  
                 if (!res2) {  
                         fatal("Couldn't read the disk image. Aborting.\n");  
                         goto ret;  
                 }  
   
                 dp = dirbuf;  
                 len = dp[0];  
                 if (len < 2)  
                         break;  
   
                 /*  
                  *  TODO: Actually parse the directory entry!  
                  *  
                  *  Haha, this must be rewritten.  
                  */  
                 for (i=32; i<len; i++) {  
                         if (i < len - strlen(filename))  
                                 if (strncasecmp(filename, (char *)dp + i,  
                                     strlen(filename)) == 0) {  
                                         /*  The filename was found somewhere  
                                             in the directory entry.  */  
                                         if (match_entry != NULL) {  
                                                 fatal("TODO: I'm too lazy to"  
                                                     " implement a correct "  
                                                     "directory parser right "  
                                                     "now... (BUG)\n");  
                                                 exit(1);  
                                         }  
                                         match_entry = malloc(512);  
                                         if (match_entry == NULL) {  
                                                 fatal("out of memory\n");  
                                                 exit(1);  
                                         }  
                                         memcpy(match_entry, dp, 512);  
                                         break;  
                                 }  
                 }  
   
                 dirofs += len;  
         }  
   
         if (match_entry == NULL) {  
                 char *blah = filename_orig;  
   
                 fatal("could not find '%s' in /", filename);  
   
                 /*  Print the first part of the filename:  */  
                 while (blah != filename)  
                         fatal("%c", *blah++);  
                   
                 fatal("\n");  
                 goto ret;  
         }  
   
         fileofs = match_entry[2] + (match_entry[3] << 8) +  
             (match_entry[4] << 16) + ((uint64_t)match_entry[5] << 24);  
         filelen = match_entry[10] + (match_entry[11] << 8) +  
             (match_entry[12] << 16) + ((uint64_t)match_entry[13] << 24);  
         fileofs *= 2048;  
   
         /*  debug("filelen=%llx fileofs=%llx\n", (long long)filelen,  
             (long long)fileofs);  */  
   
         filebuf = malloc(filelen);  
         if (filebuf == NULL) {  
                 fatal("could not allocate %lli bytes to read the file"  
                     " from the disk image!\n", (long long)filelen);  
                 goto ret;  
         }  
   
         tmpfname = strdup("/tmp/gxemul.XXXXXXXXXXXX");  
   
         res2 = diskimage_access(m, disk_id, disk_type, 0, fileofs, filebuf,  
             filelen);  
         if (!res2) {  
                 fatal("could not read the file from the disk image!\n");  
                 goto ret;  
         }  
   
         tmpfile_handle = mkstemp(tmpfname);  
         if (tmpfile_handle < 0) {  
                 fatal("could not create %s\n", tmpfname);  
                 exit(1);  
         }  
         write(tmpfile_handle, filebuf, filelen);  
         close(tmpfile_handle);  
   
         debug("extracted %lli bytes into %s\n", (long long)filelen, tmpfname);  
   
         /*  Add the temporary filename to the load_namesp array:  */  
         (*n_loadp)++;  
         new_array = malloc(sizeof(char *) * (*n_loadp));  
         if (new_array == NULL) {  
                 fatal("out of memory\n");  
                 exit(1);  
         }  
         memcpy(new_array, *load_namesp, sizeof(char *) * (*n_loadp));  
         *load_namesp = new_array;  
   
         /*  This adds a Backspace char in front of the filename; this  
             is a special hack which causes the file to be removed once  
             it has been loaded.  */  
         tmpfname = realloc(tmpfname, strlen(tmpfname) + 2);  
         memmove(tmpfname + 1, tmpfname, strlen(tmpfname) + 1);  
         tmpfname[0] = 8;  
   
         (*load_namesp)[*n_loadp - 1] = tmpfname;  
   
         res = 1;  
   
 ret:  
         if (dirbuf != NULL)  
                 free(dirbuf);  
149    
150          if (filebuf != NULL)          CHECK_ALLOCATION(e = malloc(sizeof(struct emul)));
151                  free(filebuf);          memset(e, 0, sizeof(struct emul));
152    
153          if (match_entry != NULL)          CHECK_ALLOCATION(e->path = malloc(15));
154                  free(match_entry);          snprintf(e->path, 15, "emul[%i]", id);
155    
156          free(filename_orig);          e->settings = settings_new();
157    
158          debug_indentation(-iadd);          settings_add(e->settings, "n_machines", 0,
159          return res;              SETTINGS_TYPE_INT, SETTINGS_FORMAT_DECIMAL,
160  }              (void *) &e->n_machines);
161    
162            /*  TODO: More settings?  */
163    
164  /*          /*  Sane default values:  */
165   *  apple_load_bootblock():          e->n_machines = 0;
166   *          e->next_serial_nr = 1;
  *  Try to load a kernel from a disk image with an Apple Partition Table.  
  *  
  *  TODO: This function uses too many magic offsets and so on; it should be  
  *  cleaned up some day. See http://www.awprofessional.com/articles/  
  *      article.asp?p=376123&seqNum=3&rl=1  for some info on the Apple  
  *  partition format.  
  *  
  *  Returns 1 on success, 0 on failure.  
  */  
 static int apple_load_bootblock(struct machine *m, struct cpu *cpu,  
         int disk_id, int disk_type, int *n_loadp, char ***load_namesp)  
 {  
         unsigned char buf[0x8000];  
         int res, partnr, n_partitions = 0, n_hfs_partitions = 0;  
         uint64_t hfs_start, hfs_length;  
   
         res = diskimage_access(m, disk_id, disk_type, 0, 0x0, buf, sizeof(buf));  
         if (!res) {  
                 fatal("apple_load_bootblock: couldn't read the disk "  
                     "image. Aborting.\n");  
                 return 0;  
         }  
   
         partnr = 0;  
         do {  
                 int start, length;  
                 int ofs = 0x200 * (partnr + 1);  
                 if (partnr == 0)  
                         n_partitions = buf[ofs + 7];  
                 start = ((uint64_t)buf[ofs + 8] << 24) + (buf[ofs + 9] << 16) +  
                     (buf[ofs + 10] << 8) + buf[ofs + 11];  
                 length = ((uint64_t)buf[ofs+12] << 24) + (buf[ofs + 13] << 16) +  
                     (buf[ofs + 14] << 8) + buf[ofs + 15];  
   
                 debug("partition %i: '%s', type '%s', start %i, length %i\n",  
                     partnr, buf + ofs + 0x10, buf + ofs + 0x30,  
                     start, length);  
   
                 if (strcmp((char *)buf + ofs + 0x30, "Apple_HFS") == 0) {  
                         n_hfs_partitions ++;  
                         hfs_start = 512 * start;  
                         hfs_length = 512 * length;  
                 }  
   
                 /*  Any more partitions?  */  
                 partnr ++;  
         } while (partnr < n_partitions);  
167    
168          if (n_hfs_partitions == 0) {          if (name != NULL) {
169                  fatal("Error: No HFS partition found! TODO\n");                  CHECK_ALLOCATION(e->name = strdup(name));
170                  return 0;                  settings_add(e->settings, "name", 0,
171          }                      SETTINGS_TYPE_STRING, SETTINGS_FORMAT_STRING,
172          if (n_hfs_partitions >= 2) {                      (void *) &e->name);
                 fatal("Error: Too many HFS partitions found! TODO\n");  
                 return 0;  
173          }          }
174    
175          return 0;          return e;
176  }  }
177    
178    
179  /*  /*
180   *  load_bootblock():   *  emul_destroy():
181   *   *
182   *  For some emulation modes, it is possible to boot from a harddisk image by   *  Destroys a previously created emul object.
  *  loading a bootblock from a specific disk offset into memory, and executing  
  *  that, instead of requiring a separate kernel file.  It is then up to the  
  *  bootblock to load a kernel.  
  *  
  *  Returns 1 on success, 0 on failure.  
183   */   */
184  static int load_bootblock(struct machine *m, struct cpu *cpu,  void emul_destroy(struct emul *emul)
         int *n_loadp, char ***load_namesp)  
185  {  {
186          int boot_disk_id, boot_disk_type = 0, n_blocks, res, readofs,          int i;
             iso_type, retval = 0;  
         unsigned char minibuf[0x20];  
         unsigned char *bootblock_buf;  
         uint64_t bootblock_offset;  
         uint64_t bootblock_loadaddr, bootblock_pc;  
   
         boot_disk_id = diskimage_bootdev(m, &boot_disk_type);  
         if (boot_disk_id < 0)  
                 return 0;  
   
         switch (m->machine_type) {  
         case MACHINE_PMAX:  
                 /*  
                  *  The first few bytes of a disk contains information about  
                  *  where the bootblock(s) are located. (These are all 32-bit  
                  *  little-endian words.)  
                  *  
                  *  Offset 0x10 = load address  
                  *         0x14 = initial PC value  
                  *         0x18 = nr of 512-byte blocks to read  
                  *         0x1c = offset on disk to where the bootblocks  
                  *                are (in 512-byte units)  
                  *         0x20 = nr of blocks to read...  
                  *         0x24 = offset...  
                  *  
                  *  nr of blocks to read and offset are repeated until nr of  
                  *  blocks to read is zero.  
                  */  
                 res = diskimage_access(m, boot_disk_id, boot_disk_type, 0, 0,  
                     minibuf, sizeof(minibuf));  
   
                 bootblock_loadaddr = minibuf[0x10] + (minibuf[0x11] << 8)  
                   + (minibuf[0x12] << 16) + ((uint64_t)minibuf[0x13] << 24);  
   
                 /*  Convert loadaddr to uncached:  */  
                 if ((bootblock_loadaddr & 0xf0000000ULL) != 0x80000000 &&  
                     (bootblock_loadaddr & 0xf0000000ULL) != 0xa0000000)  
                         fatal("\nWARNING! Weird load address 0x%08x.\n\n",  
                             (int)bootblock_loadaddr);  
                 bootblock_loadaddr &= 0x0fffffffULL;  
                 bootblock_loadaddr |= 0xffffffffa0000000ULL;  
   
                 bootblock_pc = minibuf[0x14] + (minibuf[0x15] << 8)  
                   + (minibuf[0x16] << 16) + ((uint64_t)minibuf[0x17] << 24);  
   
                 bootblock_pc &= 0x0fffffffULL;  
                 bootblock_pc |= 0xffffffffa0000000ULL;  
                 cpu->pc = bootblock_pc;  
   
                 debug("DEC boot: loadaddr=0x%08x, pc=0x%08x",  
                     (int)bootblock_loadaddr, (int)bootblock_pc);  
   
                 readofs = 0x18;  
   
                 for (;;) {  
                         res = diskimage_access(m, boot_disk_id, boot_disk_type,  
                             0, readofs, minibuf, sizeof(minibuf));  
                         if (!res) {  
                                 fatal("Couldn't read the disk image. "  
                                     "Aborting.\n");  
                                 return 0;  
                         }  
   
                         n_blocks = minibuf[0] + (minibuf[1] << 8)  
                           + (minibuf[2] << 16) + ((uint64_t)minibuf[3] << 24);  
   
                         bootblock_offset = (minibuf[4] + (minibuf[5] << 8) +  
                           (minibuf[6]<<16) + ((uint64_t)minibuf[7]<<24)) * 512;  
   
                         if (n_blocks < 1)  
                                 break;  
   
                         debug(readofs == 0x18? ": %i" : " + %i", n_blocks);  
   
                         if (n_blocks * 512 > 65536)  
                                 fatal("\nWARNING! Unusually large bootblock "  
                                     "(%i bytes)\n\n", n_blocks * 512);  
   
                         bootblock_buf = malloc(n_blocks * 512);  
                         if (bootblock_buf == NULL) {  
                                 fprintf(stderr, "out of memory in "  
                                     "load_bootblock()\n");  
                                 exit(1);  
                         }  
   
                         res = diskimage_access(m, boot_disk_id, boot_disk_type,  
                             0, bootblock_offset, bootblock_buf, n_blocks * 512);  
                         if (!res) {  
                                 fatal("WARNING: could not load bootblocks from"  
                                     " disk offset 0x%llx\n",  
                                     (long long)bootblock_offset);  
                         }  
   
                         store_buf(cpu, bootblock_loadaddr,  
                             (char *)bootblock_buf, n_blocks * 512);  
   
                         bootblock_loadaddr += 512*n_blocks;  
                         free(bootblock_buf);  
                         readofs += 8;  
                 }  
   
                 debug(readofs == 0x18? ": no blocks?\n" : " blocks\n");  
                 return 1;  
   
         case MACHINE_X86:  
                 /*  TODO: "El Torito" etc?  */  
                 if (diskimage_is_a_cdrom(cpu->machine, boot_disk_id,  
                     boot_disk_type))  
                         break;  
   
                 bootblock_buf = malloc(512);  
                 if (bootblock_buf == NULL) {  
                         fprintf(stderr, "Out of memory.\n");  
                         exit(1);  
                 }  
   
                 debug("loading PC bootsector from %s id %i\n",  
                     diskimage_types[boot_disk_type], boot_disk_id);  
   
                 res = diskimage_access(m, boot_disk_id, boot_disk_type, 0, 0,  
                     bootblock_buf, 512);  
                 if (!res) {  
                         fatal("Couldn't read the disk image. Aborting.\n");  
                         return 0;  
                 }  
   
                 if (bootblock_buf[510] != 0x55 || bootblock_buf[511] != 0xaa)  
                         debug("WARNING! The 0x55,0xAA marker is missing! "  
                             "Booting anyway.\n");  
                 store_buf(cpu, 0x7c00, (char *)bootblock_buf, 512);  
                 free(bootblock_buf);  
   
                 return 1;  
         }  
   
   
         /*  
          *  Try reading a kernel manually from the disk. The code here  
          *  does not rely on machine-dependent boot blocks etc.  
          */  
         /*  ISO9660: (0x800 bytes at 0x8000)  */  
         bootblock_buf = malloc(0x800);  
         if (bootblock_buf == NULL) {  
                 fprintf(stderr, "Out of memory.\n");  
                 exit(1);  
         }  
   
         res = diskimage_access(m, boot_disk_id, boot_disk_type,  
             0, 0x8000, bootblock_buf, 0x800);  
         if (!res) {  
                 fatal("Couldn't read the disk image. Aborting.\n");  
                 return 0;  
         }  
   
         iso_type = 0;  
         if (strncmp((char *)bootblock_buf+1, "CD001", 5) == 0)  
                 iso_type = 1;  
         if (strncmp((char *)bootblock_buf+1, "CDW01", 5) == 0)  
                 iso_type = 2;  
         if (strncmp((char *)bootblock_buf+1, "CDROM", 5) == 0)  
                 iso_type = 3;  
   
         if (iso_type != 0) {  
                 /*  We can't load a kernel if the name  
                     isn't specified.  */  
                 if (cpu->machine->boot_kernel_filename == NULL ||  
                     cpu->machine->boot_kernel_filename[0] == '\0')  
                         fatal("\nISO9660 filesystem, but no kernel "  
                             "specified? (Use the -j option.)\n");  
                 else  
                         retval = iso_load_bootblock(m, cpu, boot_disk_id,  
                             boot_disk_type, iso_type, bootblock_buf,  
                             n_loadp, load_namesp);  
         }  
   
         if (retval != 0)  
                 goto ret_ok;  
   
         /*  Apple parition table:  */  
         res = diskimage_access(m, boot_disk_id, boot_disk_type,  
             0, 0x0, bootblock_buf, 0x800);  
         if (!res) {  
                 fatal("Couldn't read the disk image. Aborting.\n");  
                 return 0;  
         }  
         if (bootblock_buf[0x000] == 'E' && bootblock_buf[0x001] == 'R' &&  
             bootblock_buf[0x200] == 'P' && bootblock_buf[0x201] == 'M') {  
                 /*  We can't load a kernel if the name  
                     isn't specified.  */  
                 if (cpu->machine->boot_kernel_filename == NULL ||  
                     cpu->machine->boot_kernel_filename[0] == '\0')  
                         fatal("\nApple partition table, but no kernel "  
                             "specified? (Use the -j option.)\n");  
                 else  
                         retval = apple_load_bootblock(m, cpu, boot_disk_id,  
                             boot_disk_type, n_loadp, load_namesp);  
         }  
   
 ret_ok:  
         free(bootblock_buf);  
         return retval;  
 }  
   
187    
188  /*          if (emul->name != NULL) {
189   *  emul_new():                  settings_remove(emul->settings, "name");
190   *                  free(emul->name);
  *  Returns a reasonably initialized struct emul.  
  */  
 struct emul *emul_new(char *name)  
 {  
         struct emul *e;  
         e = malloc(sizeof(struct emul));  
         if (e == NULL) {  
                 fprintf(stderr, "out of memory in emul_new()\n");  
                 exit(1);  
191          }          }
192    
193          memset(e, 0, sizeof(struct emul));          for (i=0; i<emul->n_machines; i++)
194                    machine_destroy(emul->machines[i]);
195    
196          /*  Sane default values:  */          if (emul->machines != NULL)
197          e->n_machines = 0;                  free(emul->machines);
         e->next_serial_nr = 1;  
198    
199          if (name != NULL) {          /*  Remove any remaining level-1 settings:  */
200                  e->name = strdup(name);          settings_remove_all(emul->settings);
201                  if (e->name == NULL) {          settings_destroy(emul->settings);
                         fprintf(stderr, "out of memory in emul_new()\n");  
                         exit(1);  
                 }  
         }  
202    
203          return e;          free(emul);
204  }  }
205    
206    
# Line 774  struct emul *emul_new(char *name) Line 215  struct emul *emul_new(char *name)
215  struct machine *emul_add_machine(struct emul *e, char *name)  struct machine *emul_add_machine(struct emul *e, char *name)
216  {  {
217          struct machine *m;          struct machine *m;
218            char tmpstr[20];
219            int i;
220    
221          m = machine_new(name, e);          m = machine_new(name, e, e->n_machines);
222          m->serial_nr = (e->next_serial_nr ++);          m->serial_nr = (e->next_serial_nr ++);
223    
224          e->n_machines ++;          i = e->n_machines ++;
225          e->machines = realloc(e->machines,  
226              sizeof(struct machine *) * e->n_machines);          CHECK_ALLOCATION(e->machines = realloc(e->machines,
227          if (e->machines == NULL) {              sizeof(struct machine *) * e->n_machines));
228                  fprintf(stderr, "emul_add_machine(): out of memory\n");  
229                  exit(1);          e->machines[i] = m;
230          }  
231            snprintf(tmpstr, sizeof(tmpstr), "machine[%i]", i);
232            settings_add(e->settings, tmpstr, 1, SETTINGS_TYPE_SUBSETTINGS, 0,
233                e->machines[i]->settings);
234    
         e->machines[e->n_machines - 1] = m;  
235          return m;          return m;
236  }  }
237    
# Line 974  void emul_machine_setup(struct machine * Line 419  void emul_machine_setup(struct machine *
419                  /*  TODO: This should be moved elsewhere...  */                  /*  TODO: This should be moved elsewhere...  */
420                  if (m->machine_type == MACHINE_BEBOX)                  if (m->machine_type == MACHINE_BEBOX)
421                          m->ncpus = 2;                          m->ncpus = 2;
                 else if (m->machine_type == MACHINE_ARC &&  
                     m->machine_subtype == MACHINE_ARC_NEC_R96)  
                         m->ncpus = 2;  
                 else if (m->machine_type == MACHINE_ARC &&  
                     m->machine_subtype == MACHINE_ARC_NEC_R98)  
                         m->ncpus = 4;  
422                  else                  else
423                          m->ncpus = 1;                          m->ncpus = 1;
424          }          }
425          m->cpus = malloc(sizeof(struct cpu *) * m->ncpus);  
426          if (m->cpus == NULL) {          CHECK_ALLOCATION(m->cpus = malloc(sizeof(struct cpu *) * m->ncpus));
                 fprintf(stderr, "out of memory\n");  
                 exit(1);  
         }  
427          memset(m->cpus, 0, sizeof(struct cpu *) * m->ncpus);          memset(m->cpus, 0, sizeof(struct cpu *) * m->ncpus);
428    
429          debug("cpu0");          debug("cpu0");
# Line 1004  void emul_machine_setup(struct machine * Line 440  void emul_machine_setup(struct machine *
440          }          }
441          debug("\n");          debug("\n");
442    
 #if 0  
         /*  Special case: The Playstation Portable has an additional CPU:  */  
         if (m->machine_type == MACHINE_PSP) {  
                 debug("cpu%i: ", m->ncpus);  
                 m->cpus[m->ncpus] = cpu_new(m->memory, m,  
                     0  /*  use 0 here to show info with debug()  */,  
                     "Allegrex" /*  TODO  */);  
                 debug("\n");  
                 m->ncpus ++;  
         }  
 #endif  
   
443          if (m->use_random_bootstrap_cpu)          if (m->use_random_bootstrap_cpu)
444                  m->bootstrap_cpu = random() % m->ncpus;                  m->bootstrap_cpu = random() % m->ncpus;
445          else          else
# Line 1029  void emul_machine_setup(struct machine * Line 453  void emul_machine_setup(struct machine *
453                      m->userland_emul, NULL, NULL, NULL);                      m->userland_emul, NULL, NULL, NULL);
454    
455                  switch (m->arch) {                  switch (m->arch) {
456  #ifdef ENABLE_ALPHA  
457                  case ARCH_ALPHA:                  case ARCH_ALPHA:
458                          cpu->memory_rw = alpha_userland_memory_rw;                          cpu->memory_rw = alpha_userland_memory_rw;
459                          break;                          break;
460  #endif  
461                  default:cpu->memory_rw = userland_memory_rw;                  default:
462                            cpu->memory_rw = userland_memory_rw;
463                  }                  }
464          }          }
465    
466          if (m->use_x11)          if (m->x11_md.in_use)
467                  x11_init(m);                  x11_init(m);
468    
469          /*  Fill memory with random bytes:  */          /*  Fill memory with random bytes:  */
# Line 1107  void emul_machine_setup(struct machine * Line 532  void emul_machine_setup(struct machine *
532                          fread(buf, 1, sizeof(buf), tmp_f);                          fread(buf, 1, sizeof(buf), tmp_f);
533                          if (buf[0]==0x1f && buf[1]==0x8b) {                          if (buf[0]==0x1f && buf[1]==0x8b) {
534                                  size_t zzlen = strlen(name_to_load)*2 + 100;                                  size_t zzlen = strlen(name_to_load)*2 + 100;
535                                  char *zz = malloc(zzlen);                                  char *zz;
536    
537                                    CHECK_ALLOCATION(zz = malloc(zzlen));
538                                  debug("gunziping %s\n", name_to_load);                                  debug("gunziping %s\n", name_to_load);
539    
540                                  /*                                  /*
541                                   *  gzip header found.  If this was a file                                   *  gzip header found.  If this was a file
542                                   *  extracted from, say, a CDROM image, then it                                   *  extracted from, say, a CDROM image, then it
# Line 1125  void emul_machine_setup(struct machine * Line 553  void emul_machine_setup(struct machine *
553                                  } else {                                  } else {
554                                          /*  gunzip into new temp file:  */                                          /*  gunzip into new temp file:  */
555                                          int tmpfile_handle;                                          int tmpfile_handle;
556                                          char *new_temp_name =                                          char *new_temp_name;
557                                              strdup("/tmp/gxemul.XXXXXXXXXXXX");                                          CHECK_ALLOCATION(new_temp_name =
558                                                strdup("/tmp/gxemul.XXXXXXXXXXXX"));
559                                          tmpfile_handle = mkstemp(new_temp_name);                                          tmpfile_handle = mkstemp(new_temp_name);
560                                          close(tmpfile_handle);                                          close(tmpfile_handle);
561                                          snprintf(zz, zzlen, "gunzip -c '%s' > "                                          snprintf(zz, zzlen, "gunzip -c '%s' > "
# Line 1140  void emul_machine_setup(struct machine * Line 569  void emul_machine_setup(struct machine *
569                          fclose(tmp_f);                          fclose(tmp_f);
570                  }                  }
571    
                 /*  
                  *  Ugly (but usable) hack for Playstation Portable:  If the  
                  *  filename ends with ".pbp" and the file contains an ELF  
                  *  header, then extract the ELF file into a temporary file.  
                  */  
                 if (strlen(name_to_load) > 4 && strcasecmp(name_to_load +  
                     strlen(name_to_load) - 4, ".pbp") == 0 &&  
                     (tmp_f = fopen(name_to_load, "r")) != NULL) {  
                         off_t filesize, j, found=0;  
                         unsigned char *buf;  
                         fseek(tmp_f, 0, SEEK_END);  
                         filesize = ftello(tmp_f);  
                         fseek(tmp_f, 0, SEEK_SET);  
                         buf = malloc(filesize);  
                         if (buf == NULL) {  
                                 fprintf(stderr, "out of memory while trying"  
                                     " to read %s\n", name_to_load);  
                                 exit(1);  
                         }  
                         fread(buf, 1, filesize, tmp_f);  
                         fclose(tmp_f);  
                         /*  Search for the ELF header, from offset 1 (!):  */  
                         for (j=1; j<filesize - 4; j++)  
                                 if (memcmp(buf + j, ELFMAG, SELFMAG) == 0) {  
                                         found = j;  
                                         break;  
                                 }  
                         if (found != 0) {  
                                 int tmpfile_handle;  
                                 char *new_temp_name =  
                                     strdup("/tmp/gxemul.XXXXXXXXXXXX");  
                                 debug("extracting ELF from %s (offset 0x%x)\n",  
                                     name_to_load, (int)found);  
                                 tmpfile_handle = mkstemp(new_temp_name);  
                                 write(tmpfile_handle, buf + found,  
                                     filesize - found);  
                                 close(tmpfile_handle);  
                                 name_to_load = new_temp_name;  
                                 remove_after_load = 1;  
                         }  
                 }  
   
                 /*  Special things required _before_ loading the file:  */  
                 switch (m->arch) {  
                 case ARCH_X86:  
                         /*  
                          *  X86 machines normally don't need to load any files,  
                          *  they can boot from disk directly. Therefore, an x86  
                          *  machine usually boots up in 16-bit real mode. When  
                          *  loading a 32-bit (or even 64-bit) ELF, that's not  
                          *  very nice, hence this special case.  
                          */  
                         pc_bios_simple_pmode_setup(cpu);  
                         break;  
                 }  
   
572                  byte_order = NO_BYTE_ORDER_OVERRIDE;                  byte_order = NO_BYTE_ORDER_OVERRIDE;
573    
574                  /*                  /*
# Line 1229  void emul_machine_setup(struct machine * Line 602  void emul_machine_setup(struct machine *
602                          cpu->pc &= 0xfffffffc;                          cpu->pc &= 0xfffffffc;
603                          break;                          break;
604    
605                  case ARCH_AVR:                  case ARCH_M88K:
606                          cpu->pc &= 0xfffff;                          if (cpu->pc & 3) {
607                          if (cpu->pc & 1) {                                  fatal("M88K: lowest bits of pc set: TODO\n");
                                 fatal("AVR: lowest bit of pc set: TODO\n");  
608                                  exit(1);                                  exit(1);
609                          }                          }
610                          break;                          cpu->pc &= 0xfffffffc;
   
                 case ARCH_HPPA:  
                         break;  
   
                 case ARCH_I960:  
                         break;  
   
                 case ARCH_IA64:  
                         break;  
   
                 case ARCH_M68K:  
611                          break;                          break;
612    
613                  case ARCH_MIPS:                  case ARCH_MIPS:
# Line 1279  void emul_machine_setup(struct machine * Line 640  void emul_machine_setup(struct machine *
640                  case ARCH_SPARC:                  case ARCH_SPARC:
641                          break;                          break;
642    
                 case ARCH_TRANSPUTER:  
                         cpu->pc &= 0xffffffffULL;  
                         break;  
   
                 case ARCH_X86:  
                         /*  
                          *  NOTE: The toc field is used to indicate an ELF32  
                          *  or ELF64 load.  
                          */  
                         switch (toc) {  
                         case 0: /*  16-bit? TODO  */  
                                 cpu->pc &= 0xffffffffULL;  
                                 break;  
                         case 1: /*  32-bit.  */  
                                 cpu->pc &= 0xffffffffULL;  
                                 break;  
                         case 2: /*  64-bit:  TODO  */  
                                 fatal("64-bit x86 load. TODO\n");  
                                 exit(1);  
                         }  
                         break;  
   
643                  default:                  default:
644                          fatal("emul_machine_setup(): Internal error: "                          fatal("emul_machine_setup(): Internal error: "
645                              "Unimplemented arch %i\n", m->arch);                              "Unimplemented arch %i\n", m->arch);
# Line 1344  void emul_machine_setup(struct machine * Line 683  void emul_machine_setup(struct machine *
683                          m->cpus[i]->running = 0;                          m->cpus[i]->running = 0;
684          }          }
685    
686          /*  Add PC dump points:  */          /*  Parse and add breakpoints:  */
687          add_dump_points(m);          add_breakpoints(m);
688    
689          /*  TODO: This is MIPS-specific!  */          /*  TODO: This is MIPS-specific!  */
690          if (m->machine_type == MACHINE_PMAX &&          if (m->machine_type == MACHINE_PMAX &&
# Line 1365  void emul_machine_setup(struct machine * Line 704  void emul_machine_setup(struct machine *
704    
705          case ARCH_ARM:          case ARCH_ARM:
706                  /*  ARM cpus aren't 64-bit:  */                  /*  ARM cpus aren't 64-bit:  */
707                  debug("0x%08x", (int)entrypoint);                  debug("0x%08"PRIx32, (uint32_t) entrypoint);
                 break;  
   
         case ARCH_AVR:  
                 /*  Atmel AVR uses a 16-bit or 22-bit program counter:  */  
                 debug("0x%04x", (int)entrypoint);  
708                  break;                  break;
709    
710          case ARCH_MIPS:          case ARCH_MIPS:
711                  if (cpu->is_32bit) {                  if (cpu->is_32bit) {
712                          debug("0x%08x", (int)m->cpus[                          debug("0x%08"PRIx32, (uint32_t)
713                              m->bootstrap_cpu]->pc);                              m->cpus[m->bootstrap_cpu]->pc);
714                          if (cpu->cd.mips.gpr[MIPS_GPR_GP] != 0)                          if (cpu->cd.mips.gpr[MIPS_GPR_GP] != 0)
715                                  debug(" (gp=0x%08x)", (int)m->cpus[                                  debug(" (gp=0x%08"PRIx32")", (uint32_t)
716                                      m->bootstrap_cpu]->cd.mips.gpr[                                      m->cpus[m->bootstrap_cpu]->cd.mips.gpr[
717                                      MIPS_GPR_GP]);                                      MIPS_GPR_GP]);
718                  } else {                  } else {
719                          debug("0x%016llx", (long long)m->cpus[                          debug("0x%016"PRIx64, (uint64_t)
720                              m->bootstrap_cpu]->pc);                              m->cpus[m->bootstrap_cpu]->pc);
721                          if (cpu->cd.mips.gpr[MIPS_GPR_GP] != 0)                          if (cpu->cd.mips.gpr[MIPS_GPR_GP] != 0)
722                                  debug(" (gp=0x%016llx)", (long long)                                  debug(" (gp=0x%016"PRIx64")", (uint64_t)
723                                      cpu->cd.mips.gpr[MIPS_GPR_GP]);                                      cpu->cd.mips.gpr[MIPS_GPR_GP]);
724                  }                  }
725                  break;                  break;
726    
727          case ARCH_PPC:          case ARCH_PPC:
728                  if (cpu->cd.ppc.bits == 32)                  if (cpu->cd.ppc.bits == 32)
729                          debug("0x%08x", (int)entrypoint);                          debug("0x%08"PRIx32, (uint32_t) entrypoint);
730                  else                  else
731                          debug("0x%016llx", (long long)entrypoint);                          debug("0x%016"PRIx64, (uint64_t) entrypoint);
                 break;  
   
         case ARCH_X86:  
                 debug("0x%04x:0x%llx", cpu->cd.x86.s[X86_S_CS],  
                     (long long)cpu->pc);  
732                  break;                  break;
733    
734          default:          default:
735                  if (cpu->is_32bit)                  if (cpu->is_32bit)
736                          debug("0x%08x", (int)cpu->pc);                          debug("0x%08"PRIx32, (uint32_t) cpu->pc);
737                  else                  else
738                          debug("0x%016llx", (long long)cpu->pc);                          debug("0x%016"PRIx64, (uint64_t) cpu->pc);
739          }          }
740          debug("\n");          debug("\n");
741    
# Line 1466  void emul_simple_init(struct emul *emul) Line 795  void emul_simple_init(struct emul *emul)
795    
796                  /*  Create a simple network:  */                  /*  Create a simple network:  */
797                  emul->net = net_init(emul, NET_INIT_FLAG_GATEWAY,                  emul->net = net_init(emul, NET_INIT_FLAG_GATEWAY,
798                      "10.0.0.0", 8, NULL, 0, 0);                      NET_DEFAULT_IPV4_MASK,
799                        NET_DEFAULT_IPV4_LEN,
800                        NULL, 0, 0, NULL);
801          } else {          } else {
802                  /*  Userland pseudo-machine:  */                  /*  Userland pseudo-machine:  */
803                  debug("Syscall emulation (userland-only) setup...\n");                  debug("Syscall emulation (userland-only) setup...\n");
# Line 1485  void emul_simple_init(struct emul *emul) Line 816  void emul_simple_init(struct emul *emul)
816   *   *
817   *  Create an emul struct by reading settings from a configuration file.   *  Create an emul struct by reading settings from a configuration file.
818   */   */
819  struct emul *emul_create_from_configfile(char *fname)  struct emul *emul_create_from_configfile(char *fname, int id)
820  {  {
821          int iadd = DEBUG_INDENTATION;          int iadd = DEBUG_INDENTATION;
822          struct emul *e = emul_new(fname);          struct emul *e = emul_new(fname, id);
823    
824          debug("Creating emulation from configfile \"%s\":\n", fname);          debug("Creating emulation from configfile \"%s\":\n", fname);
825          debug_indentation(iadd);          debug_indentation(iadd);
# Line 1530  void emul_run(struct emul **emuls, int n Line 861  void emul_run(struct emul **emuls, int n
861                  if (emul->n_debugger_cmds > 0) {                  if (emul->n_debugger_cmds > 0) {
862                          int j;                          int j;
863                          if (i == 0)                          if (i == 0)
864                                  print_separator();                                  print_separator_line();
865                          for (j = 0; j < emul->n_debugger_cmds; j ++) {                          for (j = 0; j < emul->n_debugger_cmds; j ++) {
866                                  debug("> %s\n", emul->debugger_cmds[j]);                                  debug("> %s\n", emul->debugger_cmds[j]);
867                                  debugger_execute_cmd(emul->debugger_cmds[j],                                  debugger_execute_cmd(emul->debugger_cmds[j],
# Line 1539  void emul_run(struct emul **emuls, int n Line 870  void emul_run(struct emul **emuls, int n
870                  }                  }
871          }          }
872    
873          print_separator();          print_separator_line();
874          debug("\n");          debug("\n");
875    
876    
# Line 1575  void emul_run(struct emul **emuls, int n Line 906  void emul_run(struct emul **emuls, int n
906                  cpu_functioncall_trace(emuls[0]->machines[0]->cpus[0],                  cpu_functioncall_trace(emuls[0]->machines[0]->cpus[0],
907                      emuls[0]->machines[0]->cpus[0]->pc);                      emuls[0]->machines[0]->cpus[0]->pc);
908    
909            /*  Start emulated clocks:  */
910            timer_start();
911    
912          /*          /*
913           *  MAIN LOOP:           *  MAIN LOOP:
914           *           *
915           *  Run all emulations in parallel, running each machine in           *  Run all emulations in parallel, running instructions from each
916           *  each emulation.           *  cpu in each machine in each emulation.
917           */           */
918          while (go) {          while (go) {
919                    struct cpu *bootcpu = emuls[0]->machines[0]->cpus[
920                        emuls[0]->machines[0]->bootstrap_cpu];
921    
922                  go = 0;                  go = 0;
923    
924                  /*  Flush X11 and serial console output every now and then:  */                  /*  Flush X11 and serial console output every now and then:  */
925                  if (emuls[0]->machines[0]->ninstrs >                  if (bootcpu->ninstrs > bootcpu->ninstrs_flush + (1<<19)) {
                     emuls[0]->machines[0]->ninstrs_flush + (1<<19)) {  
926                          x11_check_event(emuls, n_emuls);                          x11_check_event(emuls, n_emuls);
927                          console_flush();                          console_flush();
928                          emuls[0]->machines[0]->ninstrs_flush =                          bootcpu->ninstrs_flush = bootcpu->ninstrs;
                             emuls[0]->machines[0]->ninstrs;  
929                  }                  }
930    
931                  if (emuls[0]->machines[0]->ninstrs >                  if (bootcpu->ninstrs > bootcpu->ninstrs_show + (1<<25)) {
932                      emuls[0]->machines[0]->ninstrs_show + (1<<25)) {                          bootcpu->ninstrs_since_gettimeofday +=
933                          emuls[0]->machines[0]->ninstrs_since_gettimeofday +=                              (bootcpu->ninstrs - bootcpu->ninstrs_show);
                             (emuls[0]->machines[0]->ninstrs -  
                              emuls[0]->machines[0]->ninstrs_show);  
934                          cpu_show_cycles(emuls[0]->machines[0], 0);                          cpu_show_cycles(emuls[0]->machines[0], 0);
935                          emuls[0]->machines[0]->ninstrs_show =                          bootcpu->ninstrs_show = bootcpu->ninstrs;
                             emuls[0]->machines[0]->ninstrs;  
936                  }                  }
937    
938                  if (single_step == ENTER_SINGLE_STEPPING) {                  if (single_step == ENTER_SINGLE_STEPPING) {
# Line 1619  void emul_run(struct emul **emuls, int n Line 951  void emul_run(struct emul **emuls, int n
951                  if (single_step == SINGLE_STEPPING)                  if (single_step == SINGLE_STEPPING)
952                          debugger();                          debugger();
953    
954                  e = emuls[0];   /*  Note: Only 1 emul supported now.  */                  for (i=0; i<n_emuls; i++) {
955                            e = emuls[i];
956    
957                  for (j=0; j<e->n_machines; j++) {                          for (j=0; j<e->n_machines; j++) {
958                          if (e->machines[j]->gdb.port > 0)                                  anything = machine_run(e->machines[j]);
959                                  debugger_gdb_check_incoming(e->machines[j]);                                  if (anything)
960                                            go = 1;
961                          anything = machine_run(e->machines[j]);                          }
                         if (anything)  
                                 go = 1;  
962                  }                  }
963          }          }
964    
965            /*  Stop any running timers:  */
966            timer_stop();
967    
968          /*  Deinitialize all CPUs in all machines in all emulations:  */          /*  Deinitialize all CPUs in all machines in all emulations:  */
969          for (i=0; i<n_emuls; i++) {          for (i=0; i<n_emuls; i++) {
970                  e = emuls[i];                  e = emuls[i];
# Line 1647  void emul_run(struct emul **emuls, int n Line 981  void emul_run(struct emul **emuls, int n
981                  debugger();                  debugger();
982          }          }
983    
984          /*  Any machine using X11? Then we should wait before exiting:  */          /*  Any machine using X11? Then wait before exiting:  */
985          n = 0;          n = 0;
986          for (i=0; i<n_emuls; i++)          for (i=0; i<n_emuls; i++)
987                  for (j=0; j<emuls[i]->n_machines; j++)                  for (j=0; j<emuls[i]->n_machines; j++)
988                          if (emuls[i]->machines[j]->use_x11)                          if (emuls[i]->machines[j]->x11_md.in_use)
989                                  n++;                                  n++;
990          if (n > 0) {          if (n > 0) {
991                  printf("Press enter to quit.\n");                  printf("Press enter to quit.\n");
992                  while (!console_charavail(MAIN_CONSOLE)) {                  while (!console_charavail(MAIN_CONSOLE)) {
993                          x11_check_event(emuls, n_emuls);                          x11_check_event(emuls, n_emuls);
994                          usleep(1);                          usleep(10000);
995                  }                  }
996                  console_readchar(MAIN_CONSOLE);                  console_readchar(MAIN_CONSOLE);
997          }          }
998    
999          console_deinit();          console_deinit_main();
1000  }  }
1001    

Legend:
Removed from v.30  
changed lines
  Added in v.42

  ViewVC Help
Powered by ViewVC 1.1.26