forked from caseywdunn/eater_6502
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvid05_helloworld.s
84 lines (70 loc) · 1.3 KB
/
vid05_helloworld.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
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
lda #"H"
jsr print_char
lda #"e"
jsr print_char
lda #"l"
jsr print_char
lda #"l"
jsr print_char
lda #"o"
jsr print_char
lda #","
jsr print_char
lda #" "
jsr print_char
lda #"w"
jsr print_char
lda #"o"
jsr print_char
lda #"r"
jsr print_char
lda #"l"
jsr print_char
lda #"d"
jsr print_char
lda #"!"
jsr print_char
loop:
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