~ubuntu-branches/ubuntu/vivid/basilisk2/vivid

« back to all changes in this revision

Viewing changes to src/prefs_items.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-03-06 19:33:01 UTC
  • mfrom: (2.1.4 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080306193301-cc2ofn705nfsq3y0
Tags: 0.9.20070407-4
* Update copyright-check cdbs snippet to parse licensecheck using perl:
  + No longer randomly drops newlines
  + More compact hint file (and ordered more like wiki-proposed new copyright
    syntax).
  + No longer ignore files without copyright.
* Update copyright_hints.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *  prefs_items.cpp - Common preferences items
3
3
 *
4
 
 *  Basilisk II (C) 1997-2002 Christian Bauer
 
4
 *  Basilisk II (C) 1997-2005 Christian Bauer
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
43
43
        {"seriala", TYPE_STRING, false,   "device name of Mac serial port A"},
44
44
        {"serialb", TYPE_STRING, false,   "device name of Mac serial port B"},
45
45
        {"ether", TYPE_STRING, false,     "device name of Mac ethernet adapter"},
 
46
        {"etherconfig", TYPE_STRING, false,"path of network config script"},
46
47
        {"udptunnel", TYPE_BOOLEAN, false, "tunnel all network packets over UDP"},
47
48
        {"udpport", TYPE_INT32, false,    "IP port number for tunneling"},
48
49
        {"rom", TYPE_STRING, false,       "path of ROM file"},
62
63
        {"jitdebug", TYPE_BOOLEAN, false,    "enable JIT debugger (requires mon builtin)"},
63
64
        {"jitcachesize", TYPE_INT32, false,  "translation cache size in KB"},
64
65
        {"jitlazyflush", TYPE_BOOLEAN, false, "enable lazy invalidation of translation cache"},
 
66
        {"jitinline", TYPE_BOOLEAN, false,   "enable translation through constant jumps"},
 
67
        {"jitblacklist", TYPE_STRING, false, "blacklist opcodes from translation"},
 
68
        {"keyboardtype", TYPE_INT32, false, "hardware keyboard type"},
65
69
        {NULL, TYPE_END, false, NULL} // End of list
66
70
};
67
71
 
93
97
        PrefsAddBool("jitfpu", true);
94
98
        PrefsAddBool("jitdebug", false);
95
99
        PrefsAddInt32("jitcachesize", 8192);
96
 
        PrefsAddInt32("jitlazyflush", true);
 
100
        PrefsAddBool("jitlazyflush", true);
 
101
        PrefsAddBool("jitinline", true);
97
102
#else
98
103
        PrefsAddBool("jit", false);
99
104
#endif
 
105
 
 
106
    PrefsAddInt32("keyboardtype", 5);
100
107
}