2006-07-01 17:55:47 +02:00
|
|
|
sysfn_saveramdisk: ; 18.6 = SAVE FLOPPY IMAGE (HD version only)
|
2005-10-06 19:56:22 +02:00
|
|
|
cmp ebx,1
|
|
|
|
jnz img_save_hd_1
|
|
|
|
mov edx,bootpath ; path = '/KOLIBRI '
|
|
|
|
jmp img_save_hd_3
|
|
|
|
img_save_hd_1:
|
|
|
|
cmp ebx,2
|
|
|
|
jnz img_save_hd_2
|
|
|
|
mov edx,bootpath2 ; path = 0 (root dir)
|
|
|
|
jmp img_save_hd_3
|
|
|
|
img_save_hd_2:
|
|
|
|
cmp ebx,3
|
|
|
|
jnz exit_for_anyone
|
2006-08-06 12:29:45 +02:00
|
|
|
mov edx,[0x3010]
|
|
|
|
mov edx,[edx+TASKDATA.mem_start]
|
2005-10-06 19:56:22 +02:00
|
|
|
add edx,ecx
|
|
|
|
img_save_hd_3:
|
2006-07-01 17:55:47 +02:00
|
|
|
call reserve_hd1
|
2005-10-06 19:56:22 +02:00
|
|
|
call restorefatchain ; restore FAT !!!
|
|
|
|
mov eax,image_save
|
|
|
|
mov ebx,1440*1024 ; size 1440 Kb
|
|
|
|
mov ecx,0x100000 ; address of image
|
|
|
|
call file_write
|
2006-05-05 14:40:02 +02:00
|
|
|
mov [esp+36],eax
|
2005-10-06 19:56:22 +02:00
|
|
|
ret
|