diff options
Diffstat (limited to 'system-clock/include/flash.h')
-rw-r--r-- | system-clock/include/flash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system-clock/include/flash.h b/system-clock/include/flash.h index ac63bf9..a163a25 100644 --- a/system-clock/include/flash.h +++ b/system-clock/include/flash.h @@ -7,7 +7,7 @@ * Header file for dealing with flash. */ -#define FLASH_BASE 0x40022000 +#define FLASH_BASE 0x40022000 typedef struct { __IO uint32_t ac_r; /* Flash access control register. */ @@ -15,6 +15,6 @@ typedef struct { /* TODO fill out the rest. */ } PACKED flash_t; -#define FLASH (*(__IO flash_t*) FLASH_BASE) +#define FLASH (*(__IO flash_t*)FLASH_BASE) #endif /* H__FLASH_ */ |