diff options
-rw-r--r-- | flashconf.s | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/flashconf.s b/flashconf.s index 9a82db2..b054beb 100644 --- a/flashconf.s +++ b/flashconf.s @@ -1,6 +1,15 @@ .syntax unified .section ".flashconfig" +// Backdoor Comparison Key .long 0xFFFFFFFF .long 0xFFFFFFFF +// Program flash protection bytes. (FPROT0-3) .long 0xFFFFFFFF -.long 0xFFFFFFFE +// Data flash protection byte. (FDPROT) +.byte 0xFE +// EEPROM protection byte. (FEPROT) +.byte 0xFF +// Flash nonvolatile option byte. (FOPT) +.byte 0xFF +// Flash security byte. (FSEC) +.byte 0xFF |