Bumb up tsc rate, make it proper multiple of 1000

This commit is contained in:
Fabian 2018-01-28 14:02:57 -06:00
parent 2b75cff787
commit 5bf7abf706
2 changed files with 2 additions and 2 deletions

View file

@ -58,7 +58,7 @@ var TIME_PER_FRAME = 1;
* @const
* How many ticks the TSC does per millisecond
*/
var TSC_RATE = 8 * 1024;
var TSC_RATE = 50 * 1000;
/** @const */

View file

@ -156,7 +156,7 @@
*/
#define LOOP_COUNTER 20011
#define TSC_RATE (8 * 1024)
#define TSC_RATE (50 * 1000)
#define LOG_CPU 0x000002
#define CPU_LOG_VERBOSE false