home *** CD-ROM | disk | FTP | other *** search
- ; Copyright 1985 Cybernetic Micro Systems, Inc.
-
- ; Demo51.ASM 8051 Source Code
-
- Bseg ; Bit Segment directive
- MFlag BIT 0Ah ; Bit address 10 decimal
- DisB BIT 0Eh ; Bit address 14 decimal
- RB2 = 10h ; Pattern to select Reg Bank 2
- Ends
-
- Dseg ; Data Segment directive
- REGbuffer DATA 0 ; dummy to show Data Type
- Ends
-
- Xseg ; External Memory Segment
- DummyBuf Data 20h ; dummy to show Data Type
- Ends
-
- Cseg ; Code Segment Directive
-
- ORG 0h
-
- ;%S Copyright 1985 Cybernetic Micro Systems, Inc.
-
- Begin:
- ajmp ReStart
-
- ORG 3h ; External Interrupt 0 Vector
- nop
- Ext0Int: ;:Pin 12 LOW
- reti ; do nothing for Ext 0
-
-
- ORG 0Bh ; Timer/Counter 0 Vector
- ajmp T0Int ; if Timer 0 Interrupt
-
-
- ORG 13h ; External Interrupt 1 Vector
- reti ; do nothing for Ext 1
-
-
- ORG 1Bh ; Timer/Counter 1 Vector
- ; ; Should NOT be enabled,
- reti ; T1 is used for Serial clock
-
-
- ORG 23h ; Serial Interrupt Vector
- ajmp SerialInt ; if Serial Interrupt
-
-
- ORG 2Bh ; Timer/Counter 2 Vector
- ; ; not used in this program,
- reti ; T2 only exists in the 8052
-
-
- ReStart: ;:Hdw Reset
- mov TMOD,#20h ; T0 prescaler mode, T1 auto reload
- mov TH1,#0FDh ; reload value for serial communications
- mov TL1,#0FDh ; also initial count value
- setb TR1 ; turn on timer 1
- setb TR0 ; and timer 0
- inc R6 ; count # of reset cycles
- lcall InitSer ; turn on serial interface
- mov IE,#97h ; enable all interrupts except T1 & T2
- ;
- MainLoop: ;: Init Regs
- mov R4,#15 ; loop counter
- inc R1
- ;
- zeroVAL: ;:Value <- 0
- clr A
- mov R2,#0 ; also clear R2
- clr Mflag ; control bit
- ;
- doLoop: ;: Count Loop
- xch A,R2
- add A,#3 ;change increment value
- xch A,R2
- jb MFlag,ValMax ;?A = Max
- ;
- OutP1: ;: P1 <- AC
- add A,R2
- mov P1,A
- ;
- jb DisB,NotStore ;? DisB=1
- ;
- acall StoreVal ;record value in external memory
- inc R5
- ;
- NotStore: ;:Test Value
- setb C
- jnb ACC.7,NotMAX ;?Not Max Yet
- setb Mflag ; disable counting
- ;
- VALMax: ;: Have MAX
- acall SwitchBanks
- ;
- NotMax: ;:Repeat Loop
- cpl C
- djnz R4,DoLoop ;?R4 > 0
- ;
- mov P1,#0FFh ; set Port 1 all high again
- ajmp MainLoop
-
- StoreVAL: ;: record Value
- push psw
- movx @R1,A ; save in external memory
- pop psw
- ret
-
- SwitchBanks:
- acall SelRB2
- ;
- SelRB0: ;: BS -> 0
- anl PSW,#0E7h
- ret
- ;
- SelRB2: ;: BS -> 2
- orl PSW,#RB2
- ret
-
- InitSer: ;: UART on
- mov SCON,#052h ; mode 1, REN on, TI on
- acall SelRB2
- mov R3,#55h ; data to transmit
- acall SelRB0
- ret
-
- T0Int: ;:T0 Interrupt
- cpl DisB ; complement control bit
- reti
-
- SerialInt: ;:UART Routine
- inc R7
- jbc TI,SerialTx ;?Tx Ready
- clr RI ; else clear receiver
- acall SelRB2
- mov R4,SBUF ; read received data to R4
- acall SelRB0
- reti
- ;
- SerialTx:
- acall SelRB2
- xch A,R3
- rl A ; rotate data to transmit
- mov SBUF,A ; write to transmitter
- xch A,R3 ; save new data
- acall SelRB0
- reti
-
- nop
-
- ;%E Copyright 1985 Cybernetic Micro Systems, Inc.
-
- Ends ; end of Code segment
-
- END Begin