Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Tiny AES C
Commits
1b94f71b
Commit
1b94f71b
authored
Dec 10, 2014
by
kokke
Browse files
Update README.md
parent
ef037167
Changes
1
Show whitespace changes
Inline
Side-by-side
README.md
View file @
1b94f71b
...
...
@@ -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:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment