-
Notifications
You must be signed in to change notification settings - Fork 0
/
print.s
88 lines (76 loc) · 1.41 KB
/
print.s
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
PORTB = $6000
PORTA = $6001
DDRB = $6002
DDRA = $6003
E = %10000000
RW = %01000000
RS = %00100000
.org $8000
reset:
ldx #$FF
txs
lda #%11111111 ; Set all pins on port B to output
sta DDRB
lda #%11100000 ; Set top 3 pins on port A to output
sta DDRA
lda #%00111000 ; Set 8-bit mode; 2-line display; 5x8 font
jsr lcd_instruction
lda #%00001110 ; Display on; cursor on; blink off
jsr lcd_instruction
lda #%00000110 ; Increment and shift cursor; don't shift display
jsr lcd_instruction
loop:
lda #%00000001 ; Clear display
jsr lcd_instruction
lda #"C"
jsr print_char
lda #"e"
jsr print_char
lda #"r"
jsr print_char
lda #"e"
jsr print_char
lda #"b"
jsr print_char
lda #"e"
jsr print_char
lda #"l"
jsr print_char
lda #"l"
jsr print_char
lda #"u"
jsr print_char
lda #"m"
jsr print_char
lda #"9"
jsr print_char
lda #"0"
jsr print_char
lda #"."
jsr print_char
lda #"."
jsr print_char
lda #"."
jsr print_char
jmp loop
lcd_instruction:
sta PORTB
lda #0 ; Clear RS/RW/E bits
sta PORTA
lda #E ; Set E bit to send instruction
sta PORTA
lda #0 ; Clear RS/RW/E bits
sta PORTA
rts
print_char:
sta PORTB
lda #RS ; Set RS; Clear RW/E bits
sta PORTA
lda #(RS | E) ; Set E bit to send instruction
sta PORTA
lda #RS ; Clear E bits
sta PORTA
rts
.org $fffc
.word reset
.word $0000