kolibrios/programs/system/loaddrv/loaddrv.asm
hidnplayr 6c3d19779f loaddrv program: silently load the driver (driver name must be given as parameter).
Replaces commouse program.

git-svn-id: svn://kolibrios.org@4322 a494cfbc-eb01-0410-851d-a64ba20cac60
2013-12-03 20:29:24 +00:00

31 lines
799 B
NASM

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Copyright (C) KolibriOS team 2004-2012. All rights reserved. ;;
;; Distributed under terms of the GNU General Public License ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
format binary as ""
use32
db 'MENUET01'
dd 1
dd start
dd i_end
dd mem
dd mem
dd path, 0
start:
mov eax, 68
mov ebx, 16
mov ecx, path
int 0x40
mov eax, -1
int 0x40
i_end:
path rb 1024
mem: