Commit 20e1cc91 authored by Grzegorz Daniluk's avatar Grzegorz Daniluk

wrcore_v2: genraminit modified for new dpram initializing function

parent 1d173574
......@@ -13,9 +13,14 @@ main(int argc, char *argv[])
while(!feof(f))
{
fread(x,1,4,f);
printf("write %x %02X%02X%02X%02X\n", i++, x[0], x[1], x[2], x[3]);
printf("write %x %02X%02X%02X%02X\n", i++, x[0],x[1],x[2],x[3]);
}
for(;i<n;)
{
printf("write %x %02X%02X%02X%02X\n", i++, 0,0,0,0);
}
fclose(f);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment