forked from KolibriOS/kolibrios
6c3d19779f
Replaces commouse program. git-svn-id: svn://kolibrios.org@4322 a494cfbc-eb01-0410-851d-a64ba20cac60
31 lines
799 B
NASM
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: |