BAUD EQU $2B
SCCR1 EQU $2C
SCCR2 EQU $2D
SCDR EQU $2F
RDRF EQU $20
SCSR EQU $2E
PORTB EQU $04
ORG $00
ONSCI LDX #$1000
LDAA #$30
STAA BAUD,X
LDAA #$00
STAA SCCR1,X
LDAA #$0C
STAA SCCR2,X
SCIgetch LDX #$1000
BRCLR SCSR,X RDRF SCIgetch
LDAA SCDR,X
STAA PORTB,X
RTS
ORG $fffe ;define the reset vector to point to
FDB ONSCI ; the beginning of your code
question
1. THis is my code, is this the right way to get the binary value from PC and store in memory and output in port B?
Thanks for anyone helping
SCCR1 EQU $2C
SCCR2 EQU $2D
SCDR EQU $2F
RDRF EQU $20
SCSR EQU $2E
PORTB EQU $04
ORG $00
ONSCI LDX #$1000
LDAA #$30
STAA BAUD,X
LDAA #$00
STAA SCCR1,X
LDAA #$0C
STAA SCCR2,X
SCIgetch LDX #$1000
BRCLR SCSR,X RDRF SCIgetch
LDAA SCDR,X
STAA PORTB,X
RTS
ORG $fffe ;define the reset vector to point to
FDB ONSCI ; the beginning of your code
question
1. THis is my code, is this the right way to get the binary value from PC and store in memory and output in port B?
Thanks for anyone helping
Comment