Subversion Repositories Kolibri OS

Rev

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

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