Rev 502 | Rev 573 | 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 | |||
558 | giacomo | 6 | # Kernel Image Start Point |
7 | # MEM_START = 0x220000 |
||
8 | # The kernel image file will be loaded starting from this |
||
9 | # physical memory address. For DOS users it is important |
||
10 | # to set an high address (like 0x1720000) if you are using |
||
11 | # Smartdrive or other tools which require Extended Memory |
||
12 | MEM_START = 0x220000 |
||
13 | |||
309 | giacomo | 14 | # Enable the system time computation through TSC register |
15 | # Only Pentium or higher CPU class |
||
16 | TSC = TRUE |
||
17 | |||
18 | # Enable timer interrupt through P6 APIC instead of PIT |
||
19 | # Only P6 or higher CPU class, TSC support must be enabled |
||
502 | giacomo | 20 | APIC = TRUE |
309 | giacomo | 21 | |
558 | giacomo | 22 | # Enable TSC Read Timer Optimization |
23 | # TIMER_OPT = 1000 (For CPU < 1 GHz - Wraparound 585 years) |
||
24 | # TIMER_OPT = 2000 (For 1 GHz < CPU < 2 GHz - Wraparound 146 years) |
||
25 | # TIMER_OPT = 4000 (For 2 GHz < CPU < 4 GHz - Wraparound 36 years) |
||
26 | # TIMER_OPT = 8000 (For CPU < 8 GHz - Wraparound 292 years) |
||
336 | giacomo | 27 | TIMER_OPT = 8000 |
355 | giacomo | 28 | |
558 | giacomo | 29 | # Select the events tracer |
355 | giacomo | 30 | # TRACER = "NO","OLD","NEW" |
558 | giacomo | 31 | TRACER = "NO" |
355 | giacomo | 32 | |
558 | giacomo | 33 | # Select the BIOS INTERRUPT access mode |
34 | # BIOS = "X","VM86" |
||
449 | giacomo | 35 | # X means that you must use x.exe as shark loader |
36 | # if shark needs to call BIOS interrupt (Ex. to enable |
||
37 | # graphics) |
||
38 | # VM86 means that shark call the BIOS interrupts as |
||
39 | # Virtual Machine 86, and you can load a graphical |
||
40 | # demo also through GRUB. VM86 MODE IS NOT COMPATIBLE |
||
558 | giacomo | 41 | # WITH SOME VGA CARDS (MATROX) |
450 | giacomo | 42 | BIOS = "X" |
449 | giacomo | 43 | |
558 | giacomo | 44 | # Select the FrameBuffer Configuration |
45 | # FB = "VESA","FINDPCI","VGA16" |
||
489 | giacomo | 46 | # VESA it uses the VBE interrupts to enable the |
47 | # selected video mode |
||
48 | # FINDPCI the FrameBuffer driver will try to find a |
||
49 | # PCI/AGP graphical card. If a card is found, FB will |
||
50 | # use a specific driver to enable it |
||
51 | # VGA16 enable the VGA16 (4 bpp) video mode |
||
52 | FB = "VESA" |