Merge pull request #157 from CBJamo/master

Add ifdef check for MAIN_RAM_SIZE
This commit is contained in:
enjoy-digital 2019-03-31 18:46:07 +02:00 committed by GitHub
commit f95748d167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -425,7 +425,9 @@ int main(int i, char **c)
#ifdef L2_SIZE
printf("\e[1mL2\e[0m: %dKB\n", L2_SIZE/1024);
#endif
#ifdef MAIN_RAM_SIZE
printf("\e[1mMAIN-RAM\e[0m: %dKB\n", MAIN_RAM_SIZE/1024);
#endif
printf("\n");
printf("--========= \e[1mPeripherals init\e[0m ===========--\n");