/[gxemul]/trunk/man/gxemul.1
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/man/gxemul.1

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

revision 22 by dpavlin, Mon Oct 8 16:19:37 2007 UTC revision 38 by dpavlin, Mon Oct 8 16:21:53 2007 UTC
# Line 1  Line 1 
1  .\" $Id: gxemul.1,v 1.49 2006/02/18 14:02:20 debug Exp $  .\" $Id: gxemul.1,v 1.89 2007/04/10 15:37:00 debug Exp $
2  .\"  .\"
3  .\" Copyright (C) 2004-2006  Anders Gavare.  All rights reserved.  .\" Copyright (C) 2004-2007  Anders Gavare.  All rights reserved.
4  .\"  .\"
5  .\" Redistribution and use in source and binary forms, with or without  .\" Redistribution and use in source and binary forms, with or without
6  .\" modification, are permitted provided that the following conditions are met:  .\" modification, are permitted provided that the following conditions are met:
# Line 29  Line 29 
29  .\" This is a minimal man page for GXemul. Process this file with  .\" This is a minimal man page for GXemul. Process this file with
30  .\"     groff -man -Tascii gxemul.1    or    nroff -man gxemul.1  .\"     groff -man -Tascii gxemul.1    or    nroff -man gxemul.1
31  .\"  .\"
32  .Dd FEBRUARY 2006  .Dd APRIL 2007
33  .Dt GXEMUL 1  .Dt GXEMUL 1
34  .Os  .Os
35  .Sh NAME  .Sh NAME
# Line 42  Line 42 
42  .Nm  .Nm
43  .Op general options  .Op general options
44  .Ar @configfile  .Ar @configfile
45  .Nm  .\" TODO: Reenable this once userland emulation works:
46  .Op userland, other, and general options  .\" .Nm
47  .Ar file Op Ar args ...  .\" .Op userland, other, and general options
48    .\" .Ar file Op Ar args ...
49  .Sh DESCRIPTION  .Sh DESCRIPTION
50  .Nm  .Nm
51  is an experimental instruction-level machine emulator. Several  is an experimental instruction-level machine emulator. Several
# Line 53  hardware components are emulated well en Line 54  hardware components are emulated well en
54  systems (e.g. NetBSD) run inside the emulator as if they were running on a  systems (e.g. NetBSD) run inside the emulator as if they were running on a
55  real machine.  real machine.
56  .Pp  .Pp
57  The processor architecture best emulated by GXemul is MIPS, but other  Processors (ARM, MIPS, PowerPC, SuperH) are emulated using dynamic translation.
58  architectures (ARM and PowerPC) are also partially emulated.  However, unlike some other dynamically translating emulators, GXemul does
59  .Pp  not need to generate native code, only a "runnable intermediate
60  MIPS processors are emulated using either a simple binary translation  representation", and will thus run on any host architecture, without the
61  layer (recompilation into native code), which is used on Alpha and i386  need to implement per-architecture backends.
 hosts, or by traditional interpretation (very very slow, but works on any  
 host platform).  
 .Pp  
 Non-MIPS processors are emulated using a newer dynamic translation  
 system (called dyntrans in the rest of this man page). Performance is  
 somewhere between traditional interpretation and recompilation into native  
 code. However, the dynamic translation system used in GXemul does NOT  
 generate native code, and thus doesn't require platform-specific  
 back-ends. In plain English, this means that the dyntrans system works on  
 any host platform.  
62  .Pp  .Pp
63  There are three ways to invoke the emulator:  The emulator can be invoked in the following ways:
64  .Pp  .Pp
65  1. When emulating a complete machine, configuration options can be entered  1. When emulating a complete machine, configuration options can be entered
66  directly on the command line.  directly on the command line.
67  .Pp  .Pp
68  2. Options can be read from a configuration file.  2. Options can be read from a configuration file.
69  .Pp  .\" .Pp
70  3. When emulating a userland environment (syscall-only emulation, not  .\" 3. When emulating a userland environment (syscall-only emulation, not
71  emulating complete machines), then the program name and its argument  .\" emulating complete machines), then the program name and its argument
72  should be given on the command line. (This mode doesn't really work yet.)  .\" should be given on the command line. (This mode doesn't really work yet,
73    .\" and is disabled for stable release builds.)
74  .Pp  .Pp
75  The easiest way to use the emulator is to supply settings directly on the  The easiest way to use the emulator is to supply settings directly on the
76  command line. The most important thing you need to supply is the  command line. The most important thing you need to supply is the
# Line 97  from SGI. Use Line 89  from SGI. Use
89  .Fl H  .Fl H
90  to get a list of available emulation modes.  to get a list of available emulation modes.
91  .Pp  .Pp
92  There are two exceptions to the normal invocation usage mentioned above.  There are three exceptions to the normal invocation usage mentioned above.
93  The first is for DECstation emulation: if you have a bootable  .Pp
94  DECstation harddisk or CDROM image, then just supplying the diskimage via  1. For DECstation emulation, if you have a bootable DECstation harddisk or
95  the  CDROM image, then just supplying the diskimage via the
96  .Fl d  .Fl d
97  option is sufficient. (The filename of the kernel can then be  option is sufficient. The filename of the kernel can then be
98  skipped, as the emulator runs the bootblocks from the diskimage directly and  skipped, as the emulator runs the bootblocks from the diskimage directly and
99  doesn't need the kernel as a separate file.)  doesn't need the kernel as a separate file.
100  The second is if you supply an ISO9660 CDROM disk image. You may then use  .Pp
101  the  2. If you supply an ISO9660 CDROM disk image, then using the
102    .Fl j
103    option to indicate a file on the CDROM filesystem to load is sufficient;
104    no additional kernel filename needs to be supplied on the command line.
105    .Pp
106    3. For Dreamcast emulation, when booting e.g. a NetBSD/dreamcast CDROM
107    image, it is enough to supply the disk image (with the correct ISO
108    partition start offset). Bootblocks will be read directly from the CDROM
109    image, and there is no need to supply the name of an external kernel on
110    the command line.
111    .Pp
112    Gzipped kernels are automatically unzipped, by calling the external gunzip
113    program, both when specifying a gzipped file directly on the command line
114    and when loading such a file using the
115  .Fl j  .Fl j
116  option to indicate which file on the CDROM filesystem that should be  option.
 loaded into emulated memory.  
117  .Pp  .Pp
118  Machine selection options:  Machine selection options:
119  .Bl -tag -width Ds  .Bl -tag -width Ds
# Line 132  Use this together with Line 136  Use this together with
136  .Pp  .Pp
137  Other options:  Other options:
138  .Bl -tag -width Ds  .Bl -tag -width Ds
 .It Fl A  
 Disable load/store alignment checks in some cases. This might give a small  
 increase in performance, but the emulator will not run correctly if the  
 emulated code actually tries to do unaligned loads or stores. (This option  
 is only meaningful when emulating MIPS CPUs, when the host architecture is  
 Alpha or i386, and binary translation is enabled.)  
 .It Fl B  
 Disable native translation backends. By default, translation backends are  
 used if the host+target architecture combination is supported. Currently,  
 the only supported host architecture for the old bintrans system (used  
 when emulating MIPS processors) are Alpha and i386. The old bintrans  
 system will hopefully be removed some day.  
139  .It Fl C Ar x  .It Fl C Ar x
140  Try to emulate a specific CPU type,  Try to emulate a specific CPU type,
141  .Ar "x".  .Ar "x".
# Line 151  This overrides the default CPU type for Line 143  This overrides the default CPU type for
143  (Use  (Use
144  .Fl H  .Fl H
145  to get a list of available CPU types.)  to get a list of available CPU types.)
146  .It Fl d Ar name  .It Fl d Ar [modifiers:]filename
147  Add  Add
148  .Ar name  .Ar filename
149  as a disk image. By adding one or more modifier characters and then a  as a disk image. By adding one or more modifier characters and then a
150  colon (":") as a prefix to  colon (":") as a prefix to
151  .Ar "name",  .Ar filename,
152  you can modify the way the disk image is treated. Available modifiers are:  you can modify the way the disk image is treated. Available modifiers are:
153  .Bl -tag -width Ds  .Bl -tag -width Ds
154  .It b  .It b
# Line 172  Override the default geometry; use H hea Line 164  Override the default geometry; use H hea
164  (The number of cylinders is calculated automatically.)  (The number of cylinders is calculated automatically.)
165  .It i  .It i
166  IDE. (This is the default for most machine types.)  IDE. (This is the default for most machine types.)
167    .It oOFS;
168    Set the base offset for an ISO9660 filesystem on a disk image. The default
169    is 0. A suitable offset when booting from Dreamcast ISO9660 filesystem
170    images, which are offset by 11702 sectors, is 23965696.
171  .It r  .It r
172  Read-only (don't allow changes to be written to the file).  Read-only (don't allow changes to be written to the file).
173  .It s  .It s
174  SCSI.  SCSI.
175  .It t  .It t
176  Tape.  Tape.
177    .It V
178    Add an overlay filename to an already defined disk image.
179    (A ID number must also be specified when this flag is used. See the
180    documentation for an example of how to use overlays.)
181  .It 0-7  .It 0-7
182  Force a specific ID number.  Force a specific ID number.
183  .El  .El
184  .Pp  .Pp
185    For SCSI devices, the ID number is the SCSI ID. For IDE harddisks, the ID
186    number has the following meaning:
187    .Bl -tag -width Ds
188    .It 0
189    Primary master.
190    .It 1
191    Primary slave.
192    .It 2
193    Secondary master.
194    .It 3
195    Secondary slave.
196    .El
197    .Pp
198  Unless otherwise specified, filenames ending with ".iso" or ".cdr" are  Unless otherwise specified, filenames ending with ".iso" or ".cdr" are
199  assumed to be CDROM images. Most others are assumed to be disks. Depending  assumed to be CDROM images. Most others are assumed to be disks. Depending
200  on which machine is being emulated, the default for disks can be either  on which machine is being emulated, the default for disks can be either
# Line 193  For floppies, the gH;S; prefix is ignore Line 206  For floppies, the gH;S; prefix is ignore
206  heads and cylinders are assumed to be 2 and 80, respectively, and the  heads and cylinders are assumed to be 2 and 80, respectively, and the
207  number of sectors per track is calculated automatically. (This works for  number of sectors per track is calculated automatically. (This works for
208  720KB, 1.2MB, 1.44MB, and 2.88MB floppies.)  720KB, 1.2MB, 1.44MB, and 2.88MB floppies.)
209  .It Fl I Ar x  .It Fl I Ar hz
210  Emulate clock interrupts at  Set the main CPUs frequency to
211  .Ar x  .Ar hz
212  Hz. (This affects emulated clock devices only, not actual runtime speed.  Hz. This option does not work for all emulated machine modes. It affects
213  This disables automatic clock adjustments, which is otherwise turned on.)  the way count/compare interrupts are faked to simulate emulated time =
214  (This option is probably only valid for DECstation emulation.)  real world time. If the guest operating system relies on RTC interrupts
215    instead of count/compare interrupts, then this option has no effect.
216    .Pp
217    Setting the frequency to zero disables automatic synchronization of
218    emulated time vs real world time, and the count/compare system runs at a
219    fixed rate.
220  .It Fl i  .It Fl i
221  Display each instruction as it is being executed.  Enable instruction trace, i.e. display disassembly of each instruction as
222    it is being executed.
223  .It Fl J  .It Fl J
224  Disable some speed tricks. For MIPS emulation, these are mostly  Disable instruction combinations in the dynamic translator.
 timing-related. For non-MIPS emulation (i.e. modes using dyntrans),  
 this flag disables the use of "instruction combinations".  
225  .It Fl j Ar n  .It Fl j Ar n
226  Set the name of the kernel to  Set the name of the kernel to
227  .Ar "n".  .Ar "n".
228  When booting from an ISO9660 filesystem, the emulator will try to boot  When booting from an ISO9660 filesystem, the emulator will try to boot
229  using this file. (In some emulation modes, eg. DECstation, this name is passed  using this file. (In some emulation modes, eg. DECstation, this name is passed
230  along to the boot program. Useful names are "bsd" for OpenBSD/pmax,  along to the boot program. Useful names are "bsd" for OpenBSD/pmax,
231  or "vmunix" for Ultrix.)  "vmunix" for Ultrix, or "vmsprite" for Sprite.)
232  .It Fl M Ar m  .It Fl M Ar m
233  Emulate  Emulate
234  .Ar m  .Ar m
235  MBs of physical RAM. This overrides the default amount of RAM for the  MBs of physical RAM. This overrides the default amount of RAM for the
236  selected machine type.  selected machine type.
 .It Fl m Ar nr  
 Run at most  
 .Ar nr  
 instructions (on any cpu).  
237  .It Fl N  .It Fl N
238  Display nr of instructions/second average, at regular intervals.  Display the number of executed instructions per second on average, at
239    regular intervals.
240  .It Fl n Ar nr  .It Fl n Ar nr
241  Set nr of CPUs (for SMP experiments). Note: The emulator allocates quite a  Set the number of processors in the machine, for SMP experiments.
242  lot of virtual memory for per-CPU translation tables. On 64-bit hosts,  .Pp
243  this is normally not a problem. On 32-bit hosts, this can use up all  Note 1: The emulator allocates quite a lot of virtual memory for
244  available virtual userspace memory. The solution is to either run the  per-CPU translation tables. On 64-bit hosts, this is normally not a
245  emulator on a 64-bit host, or limit the number of emulated CPUs to a  problem. On 32-bit hosts, this can use up all available virtual userspace
246  reasonable number (say, less than 32).  memory. The solution is to either run the emulator on a 64-bit host,
247    or limit the number of emulated CPUs to a reasonably low number.
248    .Pp
249    Note 2: SMP simulation is not working very well yet; multiple processors
250    are simulated, but synchronization between the processors does not map
251    very well to how real-world SMP systems work.
252  .It Fl O  .It Fl O
253  Force a "netboot" (tftp instead of disk), even when a disk image is  Force a "netboot" (tftp instead of disk), even when a disk image is
254  present (for DECstation, SGI, and ARC emulation).  present (for DECstation, SGI, and ARC emulation).
# Line 239  Default Line 258  Default
258  .Ar arg  .Ar arg
259  for DEC is "-a", for ARC/SGI it is "-aN", and for CATS it is "-A".  for DEC is "-a", for ARC/SGI it is "-aN", and for CATS it is "-A".
260  .It Fl p Ar pc  .It Fl p Ar pc
261  Add a breakpoint. (Remember to use the "0x" prefix for hex.)  Add a breakpoint.
262    .Ar pc
263    can be a symbol, or a numeric value. (Remember to use the "0x" prefix for
264    hexadecimal values.)
265  .It Fl Q  .It Fl Q
266  Disable the built-in PROM emulation. This is useful for running raw ROM  Disable the built-in (software-only) PROM emulation. This option is useful
267  images from real machines.  for experimenting with running raw ROM images from real machines. The default
268    behaviour of the emulator is to "fake" certain PROM calls used by guest
269    operating systems (e.g. NetBSD), so that no real PROM image is needed.
270  .It Fl R  .It Fl R
271  Use a random bootstrap cpu, instead of CPU nr 0. (For SMP experiments.)  Use a random bootstrap cpu, instead of CPU nr 0. (This option is only
272    meaningful together with the
273    .Fl n
274    option.)
275  .It Fl r  .It Fl r
276  Dump register contents for every executed instruction.  Dump register contents for every executed instruction.
277  .It Fl S  .It Fl S
278  Initialize the emulated RAM to random data, instead of zeroes.  Initialize emulated RAM to random data, instead of zeroes. This option
279    is useful when trying to trigger bugs in a program that occur because the
280    program assumed that uninitialized memory contains zeros. (Use with
281    care.)
282    .It Fl s Ar flags:filename
283    Gather statistics based on the current emulated program counter value,
284    while the program executes. The statistics is actually just a raw dump of
285    all program counter values in sequence, suitable for post-analysis with
286    separate tools. Output is appended to
287    .Ar filename.
288    .Pp
289    The
290    .Ar flags
291    should include one or more of the following type specifiers:
292    .Bl -tag -width Ds
293    .It v
294    Virtual. This means that the program counter value is used.
295    .It p
296    Physical. This means that the physical address of where the program
297    is actually running is used.
298    .It i
299    Instruction call. This type of statistics gathering is practically only
300    useful during development of the emulator itself. The output is a list of
301    addresses of instruction call functions (ic->f), which after some
302    post-processing can be used as a basis for deciding when to implement
303    instruction combinations.
304    .El
305    .Pp
306    The
307    .Ar flags
308    may also include the following optional modifiers:
309    .Bl -tag -width Ds
310    .It d
311    Disabled at startup.
312    .It o
313    Overwrite the file, instead of appending to it.
314    .El
315    .Pp
316    Statistics gathering can be enabled/disabled at runtime by using the
317    "statistics_enabled = yes" and "statistics_enabled = no" debugger
318    commands.
319    .Pp
320    When gathering instruction statistics using the
321    .Fl s
322    option, instruction combinations and native code generation
323    are always disabled (i.e. implicit
324    .Fl J
325    and
326    .Fl B
327    flags are added to the command line).
328    .Pp
329    If a value is missing (e.g. the end-of-page slot does not really have a
330    known physical address), it is written out as just a dash ("-").
331  .It Fl T  .It Fl T
332  Enter the single-step debugger on unimplemented memory accesses.  Halt if the emulated program attempts to access non-existing memory.
333  .It Fl t  .It Fl t
334  Show a trace tree of all function calls being made.  Show a trace tree of all function calls being made.
335  .It Fl U  .It Fl U
# Line 284  times instead. E.g. Using Line 363  times instead. E.g. Using
363  .Ar -2  .Ar -2
364  with VGA text mode emulation will result in 80x25 character cells rendered  with VGA text mode emulation will result in 80x25 character cells rendered
365  in a 1280x800 window, instead of the normal resolution of 640x400.  in a 1280x800 window, instead of the normal resolution of 640x400.
 .It Fl y Ar x  
 Set max_random_cycles_per_chunk to  
 .Ar x  
 (experimental).  
366  .It Fl Z Ar n  .It Fl Z Ar n
367  Set the number of graphics cards, for emulating a dual-head or tripple-head  Set the number of graphics cards, for emulating a dual-head or tripple-head
368  environment. (Only for DECstation emulation so far.)  environment. (Only for DECstation emulation so far.)
# Line 297  Add Line 372  Add
372  as an X11 display to use for framebuffers.  as an X11 display to use for framebuffers.
373  .El  .El
374  .Pp  .Pp
375  Userland options:  .\" Userland options:
376  .Bl -tag -width Ds  .\" .Bl -tag -width Ds
377  .It Fl u Ar emul-mode  .\" .It Fl u Ar emul-mode
378  Userland-only (syscall) emulation. (Use  .\" Userland-only (syscall) emulation. (Use
379  .Fl H  .\" .Fl H
380  to get a list of available emulation modes.) Some (but not all) of the  .\" to get a list of available emulation modes.) Some (but not all) of the
381  options listed under Other options above can also be used with userland  .\" options listed under Other options above can also be used with
382  emulation.  .\" userland emulation.
383  .El  .\" .El
384  .Pp  .\" .Pp
385  General options:  General options:
386  .Bl -tag -width Ds  .Bl -tag -width Ds
387    .It Fl b
388    Enable native code generation at runtime. This is not really implemented
389    yet. Don't use it unless you know what you are doing. It will most
390    likely not work.
391    .It Fl B
392    Disable native code generation at runtime. (This is the default in
393    GXemul 0.4.4; there are no implemented native code generation backends.)
394  .It Fl c Ar cmd  .It Fl c Ar cmd
395  Add  Add
396  .Ar cmd  .Ar cmd
# Line 317  be achieved by using the Line 399  be achieved by using the
399  .Fl V  .Fl V
400  option, and entering the commands manually.  option, and entering the commands manually.
401  .It Fl D  .It Fl D
402  Guarantee fully deterministic behavior. Normally, the emulator calls  Causes the emulator to skip a call to srandom(). This leads to somewhat
403  srandom() with a seed based on the current time at startup. When the  more deterministic behaviour than running without this option.
404  .Fl D  However, if the emulated machine has clocks or timer interrupt sources,
405  option is used, the srandom() call is skipped, which should cause two  or if user interaction is taking place (e.g. keyboard input at irregular
406  subsequent invocations of the emulator to be identical, if all other  intervals), then this option is meaningless.
 settings are identical and no user input is taking place. (If this option  
 is used, then  
 .Fl I  
 must also be used.)  
407  .It Fl H  .It Fl H
408  Display a list of available CPU types, machine types, and userland  Display a list of available CPU types, machine types, and userland
409  emulation modes. (Most of these don't work. Please read the documentation  emulation modes. (Most of these don't work. Please read the documentation
410  included in the  included in the
411  .Nm  .Nm
412  distribution for details on which modes that actually work.)  distribution for details on which modes that actually work. Userland
413    emulation is not included in stable release builds, since it doesn't work
414    yet.)
415  .It Fl h  .It Fl h
416  Display a list of all available command line options.  Display a list of all available command line options.
417    .It Fl k Ar n
418    Set the size of the dyntrans cache (per emulated CPU) to
419    .Ar n
420    MB. The default size is 32 MB.
421  .It Fl K  .It Fl K
422  Force the single-step debugger to be entered at the end of a simulation.  Force the single-step debugger to be entered at the end of a simulation.
423  .It Fl q  .It Fl q
424  Quiet mode; this suppresses startup messages.  Quiet mode; this suppresses startup messages.
425  .It Fl s  .\".It Fl s
426  For MIPS emulation: Show opcode usage statistics after the simulation.  .\"For MIPS emulation: Show opcode usage statistics after the simulation.
427  For non-MIPS emulation (i.e. using dyntrans): Save statistics to a file at  .\"For non-MIPS emulation (i.e. using dyntrans): Save statistics to a file
428  regular intervals of which physical addresses that were executed.  .\"at regular intervals of which physical addresses that were executed.
429  .It Fl V  .It Fl V
430  Start up in the single-step debugger, paused.  Start up in the single-step debugger, paused.
431  .It Fl v  .It Fl v
# Line 382  emulated test machine in "paused" mode: Line 466  emulated test machine in "paused" mode:
466  .Pp  .Pp
467  .Dl "gxemul -E testmips -V hello_mips"  .Dl "gxemul -E testmips -V hello_mips"
468  .Pp  .Pp
469  (Paused mode means that you enter the interactive single-step debugger  Paused mode means that you enter the interactive single-step debugger
470  directly at startup, instead of launching the Hello World program.)  directly at startup, instead of launching the Hello World program.
471    .Pp
472    The paused mode is also what should be used when running "unknown" files
473    for the first time in the emulator. E.g. if you have a binary which you
474    think is some kind of MIPS ROM image, then you can try the following:
475    .Pp
476    .Dl "gxemul -vv -E baremips -V 0xbfc00000:image.raw"
477    .Pp
478    You can then use the single-stepping functionality of the built-in
479    debugger to run the code in the ROM image, to see how it behaves. Based on
480    that, you can deduce what machine type it was actually from (the
481    baremips machine is not a real machine), and perhaps try again with
482    another emulation mode.
483    .Pp
484    In general, however, real ROM images require much more emulation detail
485    than GXemul provides, so they can usually not run.
486  .Pp  .Pp
487  Please read the documentation for more details.  Please read the documentation for more details.
488  .Sh BUGS  .Sh BUGS
489  There are many bugs. Some of the known bugs are listed in the BUGS  There are many bugs. Some of the known bugs are mentioned in the TODO
490  file in the  file in the
491  .Nm  .Nm
492  source distribution, some are indirectly mentioned in the TODO file,  source distribution, some are marked as TODO in the source code itself.
 and some are mentioned in the source code itself.  
493  .Pp  .Pp
494  The binary translation subsystem used for emulating MIPS processors is  Userland (syscall-only) emulation, i.e. running a userland binary directly
495  really terrible, but it is less terrible than running without it. It will  without simulating an entire machine, doesn't really work yet.
 be removed once the newer MIPS dyntrans emulation mode works well enough.  
 .Pp  
 Userland (syscall-only) emulation doesn't really work yet.  
 .Pp  
 Emulation of MIPS CPUs is done differently from other emulation modes; the  
 documentation sometimes only reflects the way things work with MIPS  
 emulation, and it is incorrect when applied to e.g. ARM emulation.  
496  .Pp  .Pp
497  .Nm  .Nm
498  is in general not cycle-accurate; it does not simulate individual  is in general not cycle-accurate; it does not simulate individual
# Line 410  cache misses, so it cannot be used for a Line 501  cache misses, so it cannot be used for a
501  real-world processor.  real-world processor.
502  .Pp  .Pp
503  .Nm  .Nm
504  is not timing-accurate, i.e. clocks inside the emulator are in general  is in general not timing-accurate. Some emulation modes
505  not at all synched with clocks in the real world. There are a few  (DECstation, CATS, NetWinder, MobilePro (hpcmips), Malta (evbmips),
506  exceptions to this rule (the mc146818 device tries to automagically  Cobalt, Algor, Dreamcast, PICA-61, and IQ80321) try to make the guest
507  adjust emulated timer ticks to actual emulation speed).  operating system's clock run at the same speed as the host clock.
508    However, the number of instructions executed per clock tick can
509    obviously vary, depending on the current CPU load on the host.
510  .Sh AUTHOR  .Sh AUTHOR
511  GXemul is Copyright (C) 2003-2006 Anders Gavare <anders@gavare.se>  GXemul is Copyright (C) 2003-2007 Anders Gavare <anders@gavare.se>
512  .Pp  .Pp
513  See http://gavare.se/gxemul/ for more information. For other Copyright  See http://gavare.se/gxemul/ for more information. For other Copyright
514  messages, see the corresponding parts of the source code and/or  messages, see the corresponding parts of the source code and/or

Legend:
Removed from v.22  
changed lines
  Added in v.38

  ViewVC Help
Powered by ViewVC 1.1.26