2007-03-31 10:59:56 +02:00
|
|
|
$Revision: 431 $
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
|
|
|
;; Copyright (C) KolibriOS team 2004-2007. All rights reserved. ;;
|
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2007-03-05 21:17:43 +01:00
|
|
|
;
|
|
|
|
; Load of videomode driver in memory
|
2007-03-05 21:56:42 +01:00
|
|
|
;
|
2007-03-05 21:17:43 +01:00
|
|
|
; (driver is located at 0x760000-0x768000 - 32kb) // if this area not occuped anything
|
|
|
|
;
|
|
|
|
; Author: Trans
|
|
|
|
; Date: 19.07.2003
|
|
|
|
;
|
|
|
|
; Include in MeOS kernel and compile with FASM
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
; LOAD VIDEOMODE DRIVER
|
|
|
|
; If vmode.mdr file not found
|
|
|
|
or eax,-1 ; Driver ID = -1 (not present in system)
|
2007-03-05 21:56:42 +01:00
|
|
|
mov [OS_BASE+0x760000],eax ;
|
|
|
|
mov [OS_BASE+0x760100],byte 0xC3 ; Instruction RETN - driver loop
|
2007-03-05 21:17:43 +01:00
|
|
|
|
|
|
|
mov esi, vmode
|
|
|
|
xor ebx, ebx
|
|
|
|
mov ecx, 0x8000 ; size of memory area for driver
|
2007-03-05 21:56:42 +01:00
|
|
|
mov edx, OS_BASE+0x760000 ; Memory position of driver
|
|
|
|
call fs_RamdiskRead
|