memory org and solo hacker build recipe

This commit is contained in:
Conor Patrick
2018-12-05 00:13:34 -05:00
parent cbf021c7a8
commit b9ebde22e5
6 changed files with 18 additions and 18 deletions

View File

@@ -21,7 +21,7 @@
// Start of application code
#ifndef APPLICATION_START_PAGE
#define APPLICATION_START_PAGE (7)
#define APPLICATION_START_PAGE (10)
#endif
#define APPLICATION_START_ADDR (0x08000000 + ((APPLICATION_START_PAGE)*PAGE_SIZE))
@@ -31,6 +31,6 @@
#define APPLICATION_END_ADDR ((0x08000000 + ((APPLICATION_END_PAGE)*PAGE_SIZE))-8)
// Bootloader state.
#define AUTH_WORD_ADDR ((0x08000000 + ((APPLICATION_END_PAGE)*PAGE_SIZE))-8)
#define AUTH_WORD_ADDR (APPLICATION_END_ADDR)
#endif