Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
check_1_bit.s
- Committer:
- bieleluk
- Date:
- 2019-05-27
- Revision:
- 24:bc7c4e8f3fe0
- Parent:
- 0:98789a3f7363
File content as of revision 24:bc7c4e8f3fe0:
AREA asm_func, CODE, READONLY EXPORT check_1_bit check_1_bit PUSH {LR} ;R0 = GPIOx ;R1 = offset ;r2 = pin_number LDR R3, [R0, R1] LDR R0, =31 SUBS R0,R2 LSLS R3,R3,R0 LSRS R3,#31 MOVS R0,R3 POP {PC} ALIGN END