Created
November 22, 2013 22:25
-
-
Save marthall/7607917 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.thumb | |
.syntax unified | |
.include "gpio_constants.s" | |
.text | |
.global Start | |
.global GPIO_ODD_IRQHandler | |
Start: | |
LOOP_START: | |
B LOOP_START | |
.thumb_func | |
GPIO_ODD_IRQHandler: | |
LDR R0, =GPIO_BASE | |
MOV R1, #0b100 | |
STR R1, [R0, #PORT_SIZE * PORT_E + GPIO_PORT_DOUTTGL] | |
MOV R1, #0b1000000000 | |
STR R1, [R0, #GPIO_IFC] | |
BX LR | |
NOP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment