repo2/firmware_eclairexl/dummy/spiflash.c @ 1475
878 | markw | #include "spiflash.h"
|
|
void readFlashId(int *id1, int *id2)
|
|||
{
|
|||
*id1 = 0;
|
|||
*id2 = 0;
|
|||
}
|
|||
void readFlash(int address, int bytes, u08 * dest)
|
|||
{
|
|||
}
|
|||
void waitWriteComplete()
|
|||
{
|
|||
}
|
|||
int flashSectorSize()
|
|||
{
|
|||
return 0;
|
|||
}
|
|||
void eraseFlash(int address, int bytes)
|
|||
{
|
|||
}
|
|||
void writeFlash(int address, int totalbytes, u08 * dest)
|
|||
{
|
|||
}
|
|||
891 | markw | void init_romstart()
|
|
{
|
|||
}
|