Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;                                                              ;;
  3. ;; Copyright (C) KolibriOS team 2004-2012. All rights reserved. ;;
  4. ;; Distributed under terms of the GNU General Public License    ;;
  5. ;;                                                              ;;
  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7.  
  8. format binary as ""
  9.  
  10. use32
  11.         db      'MENUET01'
  12.         dd      1
  13.         dd      start
  14.         dd      i_end
  15.         dd      mem
  16.         dd      mem
  17.         dd      path, 0
  18.  
  19. start:
  20.         mov     eax, 68
  21.         mov     ebx, 16
  22.         mov     ecx, path
  23.         int     0x40
  24.  
  25.         mov     eax, -1
  26.         int     0x40
  27. i_end:
  28.  
  29.         path    rb 1024
  30.  
  31. mem: