;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; RDOS operating system ; Copyright (C) 1988-2000, Leif Ekblad ; ; This program is free software; you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation; either version 2 of the License, or ; (at your option) any later version. The only exception to this rule ; is for commercial usage in embedded systems. For information on ; usage in commercial embedded systems, contact embedded@rdos.net ; ; This program is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; ; You should have received a copy of the GNU General Public License ; along with this program; if not, write to the Free Software ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ; ; The author of this program may be contacted at leif@rdos.net ; ; GDT.ASM ; GDT handling module ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NAME gdt GateSize = 16 INCLUDE protseg.def INCLUDE user.def INCLUDE virt.def INCLUDE os.def INCLUDE user.inc INCLUDE virt.inc INCLUDE os.inc .386p code SEGMENT byte public use16 'CODE' assume cs:code extrn create_data_selector:near extrn allocate_fixed_system_mem:near PAGE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: CREATE_GDT ; ; DESCRIPTION: Create GDT descriptor ; ; PARAMETERS: ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; public create_gdt create_gdt PROC near push ds push es pusha ; mov bx,gdt_sel mov ds,bx mov eax,gdt_size mov bx,temp_sel push cs call allocate_fixed_system_mem xor si,si xor di,di mov cx,1000h rep movsb xor al,al mov cx,gdt_size-1000h rep stosb mov ds,bx mov word ptr [bx],gdt_size-1 mov si,bx mov di,gdt_sel movsd movsd mov al,[bx+7] xchg al,[bx+5] db 66h lgdt [bx] mov [bx+5],al ; mov ax,gdt_sel mov ds,ax mov cx,gdt_size xor si,si xor bx,bx init_free_dt_loop: add si,8 sub cx,8 jz init_free_dt_end mov al,[si+5] test al,80h test byte ptr [si+5],80h jnz init_free_dt_loop mov [si],bx mov bx,si jmp init_free_dt_loop init_free_dt_end: mov si,bx xor bx,bx mov [bx],si ; popa pop es pop ds ret create_gdt ENDP PAGE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: INIT_GDT ; ; DESCRIPTION: Init module ; ; PARAMETERS: ; ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; public init_gdt init_gdt PROC near pusha push ds ; mov ax,cs mov ds,ax mov es,ax mov si,OFFSET allocate_gdt mov di,OFFSET allocate_name xor cl,cl mov ax,allocate_gdt_nr RegisterOsGate mov si,OFFSET free_gdt mov di,OFFSET free_name xor cl,cl mov ax,free_gdt_nr RegisterOsGate ; xor edx,edx mov bx,__0000 mov ecx,1000h CreateDataSelector16 ; mov edx,400h mov bx,__0040 mov ecx,300h CreateDataSelector16 ; mov edx,0A0000h mov bx,__A000 mov ecx,10000h CreateDataSelector16 ; mov edx,0B0000h mov bx,__B000 mov ecx,8000h CreateDataSelector16 ; mov edx,0B8000h mov bx,__B800 mov ecx,8000h CreateDataSelector16 ; mov edx,0F0000h mov bx,__F000 mov ecx,10000h CreateDataSelector16 ; pop ds popa ret init_gdt ENDP PAGE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: ALLOCATE_GDT ; ; DESCRIPTION: Allocate GDT selector ; ; RETURNS: BX GDT entry / selector ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; allocate_name DB 'Allocate Gdt',0 public allocate_gdt allocate_gdt PROC far push ds push si push di mov si,gdt_sel mov ds,si pushf xor di,di cli mov si,[di] mov bx,si mov si,[si] mov [di],si popf pop di pop si pop ds ret allocate_gdt ENDP PAGE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ; ; NAME: FREE_GDT ; ; DESCRIPTION: Free GDT selector ; ; PARAMETERS: BX GDT entry / selector ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; free_name DB 'Free Gdt',0 free_gdt PROC far push ds push si mov si,gdt_sel mov ds,si mov byte ptr [bx+5],0 pushf cli xor si,si mov si,[si] mov [bx],si xor si,si mov [si],bx popf pop si pop ds ret free_gdt ENDP code ENDS .186 END