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

Comparing SheepShaver/src/prefs_items.cpp (file contents):
Revision 1.1 by cebix, 2002-02-04T16:58:13Z vs.
Revision 1.2 by gbeauche, 2003-12-03T10:52:47Z

# Line 52 | Line 52 | prefs_desc common_prefs_items[] = {
52          {"nosound", TYPE_BOOLEAN, false,    "don't enable sound output"},
53          {"nogui", TYPE_BOOLEAN, false,      "disable GUI"},
54          {"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"},
55 +        {"jit", TYPE_BOOLEAN, false,        "enable JIT compiler"},
56          {NULL, TYPE_END, false, NULL} // End of list
57   };
58  
# Line 72 | Line 73 | void AddPrefsDefaults(void)
73          PrefsAddBool("nosound", false);
74          PrefsAddBool("nogui", false);
75          PrefsAddBool("ignoresegv", true);
76 +
77 + #if USE_JIT
78 +        // JIT compiler specific options
79 +        PrefsAddBool("jit", true);
80 + #else
81 +        PrefsAddBool("jit", false);
82 + #endif
83   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines