summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2014-12-10 23:33:59 +0100
committerkokke <spam@rowdy.dk>2014-12-10 23:33:59 +0100
commit1b94f71b1b897616ad097dbdefc3f48453a9f884 (patch)
treef945e8e2ded8f7b087bf6264528ed89fa4a537e0
parentUpdate aes.c (diff)
downloadtiny-AES-c-1b94f71b1b897616ad097dbdefc3f48453a9f884.tar
tiny-AES-c-1b94f71b1b897616ad097dbdefc3f48453a9f884.tar.gz
tiny-AES-c-1b94f71b1b897616ad097dbdefc3f48453a9f884.tar.bz2
tiny-AES-c-1b94f71b1b897616ad097dbdefc3f48453a9f884.tar.lz
tiny-AES-c-1b94f71b1b897616ad097dbdefc3f48453a9f884.tar.xz
tiny-AES-c-1b94f71b1b897616ad097dbdefc3f48453a9f884.tar.zst
tiny-AES-c-1b94f71b1b897616ad097dbdefc3f48453a9f884.zip
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index fb496e7..a830f49 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,9 @@ GCC size output when compiled for ARM:
$ arm-none-eabi-gcc -Os -c aes.c
$ size aes.o
text data bss dec hex filename
- 2515 0 204 2719 a9f aes.o
+ 2323 0 184 2507 9cb aes.o
+
+
.. and when compiling for the THUMB instruction set, we end up around 2K in code size.
@@ -32,7 +34,8 @@ GCC size output when compiled for ARM:
$ arm-none-eabi-gcc -mthumb -Os -c aes.c
$ size aes.o
text data bss dec hex filename
- 1883 0 204 2087 827 aes.o
+ 1775 0 184 1959 7a7 aes.o
+
I am using Mentor Graphics free ARM toolchain: