Remove unused flash programming stub

Remove stubs for old flash programming method. New version uses a dedicated mode to allow access to littlefs from the Apple II.
This commit is contained in:
David Kuder 2023-01-08 00:36:06 -05:00
parent 7eb8ea3ede
commit f2b9d0ff8a
1 changed files with 0 additions and 15 deletions

View File

@ -40,18 +40,3 @@ enum {
#define TERMINAL_BACK ((terminal_tbcolor>>4) & 0xf)
#define TERMINAL_BORDER (terminal_border & 0xf)
extern uint32_t flash_control;
enum {
FLASH_STATUS_READY = 0x00,
FLASH_STATUS_BUSY = 0x01,
FLASH_STATUS_ECMD = 0xE0, // ERROR: Unknown Command
FLASH_STATUS_EPRM = 0xE2, // ERROR: Incorrect Parameter
FLASH_STATUS_ECRC = 0xE4, // ERROR: Invalid Checksum
FLASH_CONTROL_IDLE = 0x00000000,
FLASH_CONTROL_ERASE = 0x73417245,
FLASH_CONTROL_UPLOAD = 0x64704c55,
FLASH_CONTROL_REBOOT = 0x74426552,
};