1 |
|
/* |
2 |
|
* prefs_items.cpp - Common preferences items |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2002 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2004 Christian Bauer |
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 |
62 |
|
{"jitdebug", TYPE_BOOLEAN, false, "enable JIT debugger (requires mon builtin)"}, |
63 |
|
{"jitcachesize", TYPE_INT32, false, "translation cache size in KB"}, |
64 |
|
{"jitlazyflush", TYPE_BOOLEAN, false, "enable lazy invalidation of translation cache"}, |
65 |
+ |
{"jitblacklist", TYPE_STRING, false, "blacklist opcodes from translation"}, |
66 |
+ |
{"keyboardtype", TYPE_INT32, false, "hardware keyboard type"}, |
67 |
|
{NULL, TYPE_END, false, NULL} // End of list |
68 |
|
}; |
69 |
|
|
99 |
|
#else |
100 |
|
PrefsAddBool("jit", false); |
101 |
|
#endif |
102 |
+ |
|
103 |
+ |
PrefsAddInt32("keyboardtype", 5); |
104 |
|
} |