Skip to content
This repository has been archived by the owner on Jun 12, 2022. It is now read-only.

Commit

Permalink
Eeprom filesizes were incorrect, fixed this. (One bit is not a byte)
Browse files Browse the repository at this point in the history
  • Loading branch information
gameblabla committed Aug 19, 2019
1 parent 4ad1ab4 commit b1323b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/rom.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@

#define SAVE_SIZE_SRAM 32768
#define SAVE_SIZE_SRAM96 131072 //TODO: or should this be 98304
#define SAVE_SIZE_EEP4k 4096
#define SAVE_SIZE_EEP16k 16384
#define SAVE_SIZE_EEP4k 512
#define SAVE_SIZE_EEP16k 2048
#define SAVE_SIZE_FLASH 131072

#define ROM_ADDR 0xb0000000
Expand Down

0 comments on commit b1323b4

Please sign in to comment.