Merge pull request #105 from negativeExponent/flash_erase_ff

Flash : Erased memory is FFh-filled
This commit is contained in:
Autechre 2021-07-04 19:36:43 +02:00 committed by GitHub
commit 254f6effeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -172,13 +172,13 @@ void flashWrite(uint32_t address, uint8_t byte)
if (byte == 0x30) {
// SECTOR ERASE
memset(&flashSaveMemory[(flashBank << 16) + (address & 0xF000)],
0,
0xff,
0x1000);
systemSaveUpdateCounter = SYSTEM_SAVE_UPDATED;
flashReadState = FLASH_ERASE_COMPLETE;
} else if (byte == 0x10) {
// CHIP ERASE
memset(flashSaveMemory, 0, flashSize);
memset(flashSaveMemory, 0xff, flashSize);
systemSaveUpdateCounter = SYSTEM_SAVE_UPDATED;
flashReadState = FLASH_ERASE_COMPLETE;
} else {