Subversion Repositories shark

Rev

Rev 449 | Rev 489 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
309 giacomo 1
# S.Ha.R.K. Setup File
2
#
3
# Oslib Configuration
4
#
5
 
6
# Enable the system time computation through TSC register
7
# Only Pentium or higher CPU class
8
TSC = TRUE
9
 
10
# Enable timer interrupt through P6 APIC instead of PIT
11
# Only P6 or higher CPU class, TSC support must be enabled
357 giacomo 12
APIC = FALSE
309 giacomo 13
 
331 giacomo 14
#Enable Read Timer Optimization
15
#TIMER_OPT = 1000 (For CPU < 1 GHz          - Wraparound 585 years)
16
#TIMER_OPT = 2000 (For 1 GHz < CPU < 2 GHz  - Wraparound 146 years)
17
#TIMER_OPT = 4000 (For 2 GHz < CPU < 4 GHz  - Wraparound  36 years)
336 giacomo 18
#TIMER_OPT = 8000 (For CPU < 8 GHz          - Wraparound 292 years)
19
TIMER_OPT = 8000
355 giacomo 20
 
21
#Select the events tracer
22
# TRACER = "NO","OLD","NEW"
450 giacomo 23
TRACER = "NO"
355 giacomo 24
 
449 giacomo 25
#Select the BIOS INTERRUPT access mode
26
#BIOS = "X","VM86"
27
# X    means that you must use x.exe as shark loader
28
#      if shark needs to call BIOS interrupt (Ex. to enable
29
#      graphics)
30
# VM86 means that shark call the BIOS interrupts as
31
#      Virtual Machine 86, and you can load a graphical
32
#      demo also through GRUB. VM86 MODE IS NOT COMPATIBLE
33
#      WITH SOME VGA CARDS
450 giacomo 34
BIOS = "X"
449 giacomo 35