config.h 550 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. #ifndef DEBUG
  3. #define DEBUG true
  4. #endif
  5. /**
  6. * How many cycles the CPU does at a time before running hardware timers
  7. */
  8. #define LOOP_COUNTER 20011
  9. #define TSC_RATE (50 * 1000)
  10. #define CPU_LOG_VERBOSE false
  11. #define ENABLE_ACPI false
  12. #define USE_A20 false
  13. #define CHECK_TLB_INVARIANTS 0
  14. #define ENABLE_JIT 1
  15. #define ENABLE_PROFILER 0
  16. #define ENABLE_PROFILER_OPSTATS 0
  17. #define ENABLE_PROFILER_SAFE_READ_WRITE 0
  18. // Note: needs to be enabled here and in config.js
  19. #define DUMP_UNCOMPILED_ASSEMBLY 0
  20. #define LOG_PAGE_FAULTS 0