summaryrefslogtreecommitdiff
path: root/bootloader/main-c240wipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/main-c240wipe.c')
-rw-r--r--bootloader/main-c240wipe.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/bootloader/main-c240wipe.c b/bootloader/main-c240wipe.c
index 1bf3ac21a3..952382eb5b 100644
--- a/bootloader/main-c240wipe.c
+++ b/bootloader/main-c240wipe.c
@@ -29,7 +29,7 @@
29#include "kernel.h" 29#include "kernel.h"
30#include "lcd.h" 30#include "lcd.h"
31#include "font.h" 31#include "font.h"
32#include "ata.h" 32#include "storage.h"
33#include "button.h" 33#include "button.h"
34#include "disk.h" 34#include "disk.h"
35#include "crc32-mi4.h" 35#include "crc32-mi4.h"
@@ -185,14 +185,14 @@ void* main(void)
185 printf(""); 185 printf("");
186 186
187 187
188 i=ata_init(); 188 i=storage_init();
189 disk_init(IF_MV(0)); 189 disk_init(IF_MV(0));
190 190
191 memset(zero,0,16*1024); 191 memset(zero,0,16*1024);
192 printf("Zeroing flash"); 192 printf("Zeroing flash");
193 for(i=0;i<250816;i++) 193 for(i=0;i<250816;i++)
194 { 194 {
195 ata_write_sectors(IF_MV2(0,) i*32,32,zero); 195 storage_write_sectors(IF_MV2(0,) i*32,32,zero);
196 if(i%64 == 0) 196 if(i%64 == 0)
197 { 197 {
198 printf("%d kB left",(250816-i)/2); 198 printf("%d kB left",(250816-i)/2);
@@ -200,13 +200,13 @@ void* main(void)
200 } 200 }
201 201
202 printf("Writing MBR"); 202 printf("Writing MBR");
203 ata_write_sectors(IF_MV2(0,) 0,1,mbr); 203 storage_write_sectors(IF_MV2(0,) 0,1,mbr);
204 printf("Writing FAT bootsector"); 204 printf("Writing FAT bootsector");
205 ata_write_sectors(IF_MV2(0,) 1023,1,fat); 205 storage_write_sectors(IF_MV2(0,) 1023,1,fat);
206 printf("Writing more FAT"); 206 printf("Writing more FAT");
207 ata_write_sectors(IF_MV2(0,) 1024,1,backupfat); 207 storage_write_sectors(IF_MV2(0,) 1024,1,backupfat);
208 printf("Writing more FAT"); 208 printf("Writing more FAT");
209 ata_write_sectors(IF_MV2(0,) 1264,1,backupfat); 209 storage_write_sectors(IF_MV2(0,) 1264,1,backupfat);
210 if (button_hold()) 210 if (button_hold())
211 printf("Release Hold and"); 211 printf("Release Hold and");
212 212