-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPL47_1blinkLed.asm
56 lines (46 loc) · 1.53 KB
/
PL47_1blinkLed.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
;**********************************************
;Programa que pisca o led D1 a cada segundo
LIST P=16F84A ;Tipo de dispositivo
;Área de constantes
STATUS EQU 0x03
PORTA EQU 0x05
PORTB EQU 0x06
RP0 EQU 0x05
OPTION_REG EQU 0x01 ;Timer0 e Option
INTCON EQU 0x0B
TEMPO1 EQU 0x0C ;Registro de propósito
;geral
ORG 0 ;Vetor de reset
goto INICIO
ORG 5 ;Saltamos o vetor
;de interrupção
;Começo do programa
INICIO: bsf STATUS, RP0 ;Banco 1
clrf PORTB ;Porta B saída
movlw b'00000111'
movwf OPTION_REG ;Divide-se o timer por 256 obtendo
;256 us por pulso
bcf STATUS, RP0 ;Banco 0
clrf PORTB ;Zera saída
LOOP: bsf PORTB, 0 ;Acende o led
call DELAY1S ;Aguarda 1 s
bcf PORTB, 0 ;Apaga o led
call DELAY1S ;Aguarda 1 s
goto LOOP
DELAY1S: bcf STATUS, RP0 ;Banco 0
movlw 0x64
movwf TEMPO1 ;Número 100 no registrador TEMPO1
call DEL10
return
DEL10: bcf INTCON, 2 ;Zera flag de interrupção do timer
movlw 0xD8
movwf OPTION_REG ;Move 216 para o timer, que irá contar até
;255, ou seja, conta 39 pulsos de 256 us,
;ou 9.984 ms.
DEL10_1: btfss INTCON, 2 ;Verifica se houve interrupção de timer
goto DEL10_1
decfsz TEMPO1, 1 ;Somente entra no return após repetição de
;100 vezes os 9.984 ms.
goto DEL10
return
END ;Fim do programa