Skip to content

Instantly share code, notes, and snippets.

@UltiRequiem
Created September 12, 2025 00:57
Show Gist options
  • Save UltiRequiem/21032650919d7f33edc96202b4f9c94c to your computer and use it in GitHub Desktop.
Save UltiRequiem/21032650919d7f33edc96202b4f9c94c to your computer and use it in GitHub Desktop.
aaa
ORG 0
SJMP MAIN
ORG 30H
MAIN:
MOV P1,#00H
LOOP:
JB P3.3,NEXT
MOV P1,#00H
SJMP LOOP
NEXT:
JB P3.2,LOOP
MOV P1,#07H
ACALL DELAY
MOV P1,#0EH
ACALL DELAY
MOV P1,#1CH
ACALL DELAY
MOV P1,#38H
ACALL DELAY
MOV P1,#70H
ACALL DELAY
MOV P1,#0E0H
ACALL DELAY
MOV P1,#70H
ACALL DELAY
MOV P1,#38H
ACALL DELAY
MOV P1,#1CH
ACALL DELAY
MOV P1,#0EH
ACALL DELAY
SJMP LOOP
DELAY:
MOV R7,#100
D1:
MOV R6,#255
D2:
DJNZ R6,D2
DJNZ R7,D1
RET
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment