diff options
author | xengineering <mail2xengineering@protonmail.com> | 2020-10-24 18:34:11 +0200 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2020-10-24 18:34:11 +0200 |
commit | db0a19edd8c4cd62c6784d8bb1d91c61a6447a2a (patch) | |
tree | 91a713eb93885d598533c2bae536d0d441468339 /my-common-code/api-asm.S | |
parent | 28a93739db99920431b5d72d948bfc1cddd0a8a7 (diff) | |
download | stm32f103c8-examples-db0a19edd8c4cd62c6784d8bb1d91c61a6447a2a.tar stm32f103c8-examples-db0a19edd8c4cd62c6784d8bb1d91c61a6447a2a.tar.zst stm32f103c8-examples-db0a19edd8c4cd62c6784d8bb1d91c61a6447a2a.zip |
Remove Template Code
Diffstat (limited to 'my-common-code/api-asm.S')
-rw-r--r-- | my-common-code/api-asm.S | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/my-common-code/api-asm.S b/my-common-code/api-asm.S deleted file mode 100644 index 93419fd..0000000 --- a/my-common-code/api-asm.S +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Example of a pure assembly file - * For most people, this is normally unnecessary, you can use inline - * ASM in a C file, if you even need to use ASM at all. - * However, if you reallllly like doing this sort of thing, here's how :) - */ - -.syntax unified -.thumb -.section .text - -#include <libopencm3/stm32/gpio.h> - -.global rev_bytes -.func rev_bytes /* only used for debugger */ -.type rev_bytes, STT_FUNC -rev_bytes: - rev r0, r0 - bx lr |