Subversion Repositories Kolibri OS

Rev

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

  1. $Revision: 425 $
  2. iglobal
  3. saverd_fileinfo:
  4.         dd      2               ; subfunction: write
  5.         dd      0               ; (reserved)
  6.         dd      0               ; (reserved)
  7.         dd      1440*1024       ; size 1440 Kb
  8.         dd      0x100000 - std_application_base_address ; base address
  9.         db      0
  10. .name:
  11.         dd      ?
  12. endg
  13. sysfn_saveramdisk:      ; 18.6 = SAVE FLOPPY IMAGE (HD version only)
  14.         call    restorefatchain
  15.         mov     eax, saverd_fileinfo - std_application_base_address
  16.         mov     [saverd_fileinfo.name], ebx
  17.         pushad
  18.         push    eax
  19.         call    file_system_lfn
  20.         pop     eax
  21.         popad
  22.         mov     [esp+36], eax
  23.         ret
  24.