Subversion Repositories Kolibri OS

Rev

Rev 7132 | Rev 7165 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7132 Rev 7136
Line 69... Line 69...
69
format binary as "mnt"
69
format binary as "mnt"
Line 70... Line 70...
70
 
70
 
71
include 'macros.inc'
71
include 'macros.inc'
Line 72... Line 72...
72
include 'struct.inc'
72
include 'struct.inc'
Line 73... Line 73...
73
 
73
 
74
$Revision: 7132 $
74
$Revision: 7136 $
Line 75... Line 75...
75
 
75
 
76
 
76
 
Line 77... Line 77...
77
USE_COM_IRQ     equ 1      ; make irq 3 and irq 4 available for PCI devices
77
USE_COM_IRQ     = 1      ; make irq 3 and irq 4 available for PCI devices
78
VESA_1_2_VIDEO  equ 0      ; enable vesa 1.2 bank switch functions
78
VESA_1_2_VIDEO  = 0      ; enable vesa 1.2 bank switch functions
79
 
79
 
80
; Enabling the next line will enable serial output console
80
; Enabling the next line will enable serial output console
Line 92... Line 92...
92
debug_direct_print db 0
92
debug_direct_print db 0
93
; Start the first app (LAUNCHER) after kernel is loaded? (1=yes, 2 or 0=no)
93
; Start the first app (LAUNCHER) after kernel is loaded? (1=yes, 2 or 0=no)
94
launcher_start db 1
94
launcher_start db 1
95
endg
95
endg
Line 96... Line 96...
96
 
96
 
97
max_processes    equ   255
97
max_processes  =  255
Line 98... Line 98...
98
tss_step         equ   (128+8192) ; tss & i/o - 65535 ports, * 256=557056*4
98
tss_step       =  128 + 8192 ; tss & i/o - 65535 ports, * 256=557056*4
99
 
99
 
100
os_stack       equ  (os_data_l-gdts)    ; GDTs
100
os_stack       =  os_data_l - gdts    ; GDTs
101
os_code        equ  (os_code_l-gdts)
101
os_code        =  os_code_l - gdts
102
graph_data     equ  (3+graph_data_l-gdts)
102
graph_data     =  3 + graph_data_l - gdts
103
tss0           equ  (tss0_l-gdts)
103
tss0           =  tss0_l - gdts
104
app_code       equ  (3+app_code_l-gdts)
104
app_code       =  3 + app_code_l - gdts
105
app_data       equ  (3+app_data_l-gdts)
105
app_data       =  3 + app_data_l - gdts
106
app_tls        equ  (3+tls_data_l-gdts)
106
app_tls        =  3 + tls_data_l - gdts
Line 107... Line 107...
107
pci_code_sel   equ  (pci_code_32-gdts)
107
pci_code_sel   =  pci_code_32-gdts
108
pci_data_sel   equ  (pci_data_32-gdts)
108
pci_data_sel   =  pci_data_32-gdts
109
 
109