微算機 lab7

tags: microcontroller lab

題目
連結可能失效!!!

#include "p18f4520.inc" ; CONFIG1H CONFIG OSC = INTIO67 ; Oscillator Selection bits (Internal oscillator block, port function on RA6 and RA7) CONFIG FCMEN = OFF ; Fail-Safe Clock Monitor Enable bit (Fail-Safe Clock Monitor disabled) CONFIG IESO = OFF ; Internal/External Oscillator Switchover bit (Oscillator Switchover mode disabled) ; CONFIG2L CONFIG PWRT = OFF ; Power-up Timer Enable bit (PWRT disabled) CONFIG BOREN = SBORDIS ; Brown-out Reset Enable bits (Brown-out Reset enabled in hardware only (SBOREN is disabled)) CONFIG BORV = 3 ; Brown Out Reset Voltage bits (Minimum setting) ; CONFIG2H CONFIG WDT = OFF ; Watchdog Timer Enable bit (WDT disabled (control is placed on the SWDTEN bit)) CONFIG WDTPS = 32768 ; Watchdog Timer Postscale Select bits (1:32768) ; CONFIG3H CONFIG CCP2MX = PORTC ; CCP2 MUX bit (CCP2 input/output is multiplexed with RC1) CONFIG PBADEN = ON ; PORTB A/D Enable bit (PORTB<4:0> pins are configured as analog input channels on Reset) CONFIG LPT1OSC = OFF ; Low-Power Timer1 Oscillator Enable bit (Timer1 configured for higher power operation) CONFIG MCLRE = ON ; MCLR Pin Enable bit (MCLR pin enabled; RE3 input pin disabled) ; CONFIG4L CONFIG STVREN = ON ; Stack Full/Underflow Reset Enable bit (Stack full/underflow will cause Reset) CONFIG LVP = OFF ; Single-Supply ICSP Enable bit (Single-Supply ICSP disabled) CONFIG XINST = OFF ; Extended Instruction Set Enable bit (Instruction set extension and Indexed Addressing mode disabled (Legacy mode)) ; CONFIG5L CONFIG CP0 = OFF ; Code Protection bit (Block 0 (000800-001FFFh) not code-protected) CONFIG CP1 = OFF ; Code Protection bit (Block 1 (002000-003FFFh) not code-protected) CONFIG CP2 = OFF ; Code Protection bit (Block 2 (004000-005FFFh) not code-protected) CONFIG CP3 = OFF ; Code Protection bit (Block 3 (006000-007FFFh) not code-protected) ; CONFIG5H CONFIG CPB = OFF ; Boot Block Code Protection bit (Boot block (000000-0007FFh) not code-protected) CONFIG CPD = OFF ; Data EEPROM Code Protection bit (Data EEPROM not code-protected) ; CONFIG6L CONFIG WRT0 = OFF ; Write Protection bit (Block 0 (000800-001FFFh) not write-protected) CONFIG WRT1 = OFF ; Write Protection bit (Block 1 (002000-003FFFh) not write-protected) CONFIG WRT2 = OFF ; Write Protection bit (Block 2 (004000-005FFFh) not write-protected) CONFIG WRT3 = OFF ; Write Protection bit (Block 3 (006000-007FFFh) not write-protected) ; CONFIG6H CONFIG WRTC = OFF ; Configuration Register Write Protection bit (Configuration registers (300000-3000FFh) not write-protected) CONFIG WRTB = OFF ; Boot Block Write Protection bit (Boot block (000000-0007FFh) not write-protected) CONFIG WRTD = OFF ; Data EEPROM Write Protection bit (Data EEPROM not write-protected) ; CONFIG7L CONFIG EBTR0 = OFF ; Table Read Protection bit (Block 0 (000800-001FFFh) not protected from table reads executed in other blocks) CONFIG EBTR1 = OFF ; Table Read Protection bit (Block 1 (002000-003FFFh) not protected from table reads executed in other blocks) CONFIG EBTR2 = OFF ; Table Read Protection bit (Block 2 (004000-005FFFh) not protected from table reads executed in other blocks) CONFIG EBTR3 = OFF ; Table Read Protection bit (Block 3 (006000-007FFFh) not protected from table reads executed in other blocks) ; CONFIG7H CONFIG EBTRB = OFF; Boot Block Table Read Protection bit (Boot block (000000-0007FFh) not protected from table reads executed in other blocks) CHECK equ d'0' org 0x00 goto INITIAL DELAY macro num_out, num_in local outerloop local innerloop movff WREG, LATC movlw num_out movwf 0x14 outerloop: movlw num_in movwf LATA innerloop: nop nop nop nop nop nop nop nop nop decfsz LATA, 1, 0 bra innerloop decfsz 0x14, 1, 0 bra outerloop movff LATC, WREG endm ISR: org 0x08 btg CHECK, 0 ;movff PORTB, PORTB bcf INTCON, INT0IF retfie INITIAL: bsf ADCON1, PCFG3 clrf LATD clrf PORTD movlw B'00010001' IORWF LATD bcf TRISD, 0 bcf TRISD, 1 bcf TRISD, 2 bcf TRISD, 3 bsf INTCON2, RBPU clrf LATB clrf PORTB setf TRISB bcf INTCON2, INTEDG0 clrf INTCON, INT0IF bsf RCON, IPEN ;bsf INTCON, PEIE bsf INTCON, GIE bsf INTCON, INT0IE start: DELAY d'50', d'250' btfsc CHECK, 0 rrncf LATD btfss CHECK, 0 rlncf LATD goto start finish: end