Created
May 23, 2012 18:08
-
-
Save DarkSector/2776751 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| .ORG 0 | |
| ;STACK POINTER SET | |
| LDI R16, HIGH(RAMEND) | |
| OUT SPH, R16 | |
| LDI R16, LOW(RAMEND) | |
| OUT SPL, R16 | |
| MAIN: | |
| LDI R16, 0xFF | |
| OUT DDRC, R16 | |
| BACK: | |
| COM R16 | |
| OUT PORTC, R16 | |
| CALL DELAY | |
| RJMP BACK | |
| DELAY: | |
| LDI R17, 100 | |
| LOOP3: LDI R18, 255 | |
| LOOP2: LDI R19, 255 | |
| LOOP1: DEC R19 | |
| BRNE LOOP1 | |
| DEC R18 | |
| BRNE LOOP2 | |
| DEC R17 | |
| BRNE LOOP3 | |
| RET |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment