diff options
author | kokke <spam@rowdy.dk> | 2017-12-06 02:41:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-06 02:41:02 +0100 |
commit | 4097cc59c532d8d93d8e2c73983f1b5ec00511eb (patch) | |
tree | 51192a0845547a264142a533420c543e50877a1a | |
parent | Update aes.h (diff) | |
download | tiny-AES-c-4097cc59c532d8d93d8e2c73983f1b5ec00511eb.tar tiny-AES-c-4097cc59c532d8d93d8e2c73983f1b5ec00511eb.tar.gz tiny-AES-c-4097cc59c532d8d93d8e2c73983f1b5ec00511eb.tar.bz2 tiny-AES-c-4097cc59c532d8d93d8e2c73983f1b5ec00511eb.tar.lz tiny-AES-c-4097cc59c532d8d93d8e2c73983f1b5ec00511eb.tar.xz tiny-AES-c-4097cc59c532d8d93d8e2c73983f1b5ec00511eb.tar.zst tiny-AES-c-4097cc59c532d8d93d8e2c73983f1b5ec00511eb.zip |
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,14 +45,14 @@ GCC size output when only CTR mode is compiled for ARM: $ arm-none-eabi-gcc -Os -DCBC=0 -DECB=0 -DCTR=1 -c aes.c $ size aes.o text data bss dec hex filename - 1155 0 184 1339 53b aes.o + 1203 0 0 1203 4b3 aes.o .. and when compiling for the THUMB instruction set, we end up just above 1K in code size. $ arm-none-eabi-gcc -Os -mthumb -DCBC=0 -DECB=0 -DCTR=1 -c aes.c $ size aes.o text data bss dec hex filename - 855 0 184 1039 40f aes.o + 955 0 0 955 3bb aes.o I am using the Free Software Foundation, ARM GCC compiler: |