forked from KolibriOS/kolibrios
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:
|