summaryrefslogtreecommitdiffstats
path: root/test.s
blob: bee2fead29b0e0e7b30f11e290025b8b8f329ef7 (plain) (blame)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
.MEMORYMAP
DEFAULTSLOT  0
SLOTSIZE     $4000
SLOT 0       $C000
SLOTSIZE     $2000
SLOT 1       $0000 ; location doesn't matter, CHR data isn't in main memory
.ENDME

.ROMBANKMAP
BANKSTOTAL  2
BANKSIZE    $4000
BANKS       1
BANKSIZE    $2000
BANKS       1
.ENDRO


  .enum $0000
buttons_pressed DB
current_state   DB
sprite_x        DB
sprite_y        DB
  .ende


  .bank 0
  .org $0000
RESET:
  SEI          ; disable IRQs
  CLD          ; disable decimal mode
  LDX #$40
  STX $4017.W    ; disable APU frame IRQ
  LDX #$FF
  TXS          ; Set up stack
  INX          ; now X = 0
  STX $2000.W    ; disable NMI
  STX $2001.W    ; disable rendering
  STX $4010.W    ; disable DMC IRQs

vblankwait1:       ; First wait for vblank to make sure PPU is ready
  BIT $2002
  BPL vblankwait1

clrmem:
  LDA #$00
  STA $0000, x
  STA $0100, x
  STA $0300, x
  STA $0400, x
  STA $0500, x
  STA $0600, x
  STA $0700, x
  LDA #$FE
  STA $0200, x    ;move all sprites off screen
  INX
  BNE clrmem

vblankwait2:      ; Second wait for vblank, PPU is ready after this
  BIT $2002
  BPL vblankwait2

LoadPalettes:
  LDA $2002    ; read PPU status to reset the high/low latch
  LDA #$3F
  STA $2006    ; write the high byte of $3F00 address
  LDA #$00
  STA $2006    ; write the low byte of $3F00 address
  LDX #$00
LoadPalettesLoop:
  LDA palette.w, x        ;load palette byte
  STA $2007             ;write to PPU
  INX                   ;set index to next byte
  CPX #$20            
  BNE LoadPalettesLoop  ;if x = $20, 32 bytes copied, all done

  ; initialize variables in ram
  LDA #$00
  STA buttons_pressed
  STA current_state
  LDA #$80
  STA sprite_x
  STA sprite_y

  LDA #$32
  STA $0201 ; set the sprite number to display
  LDA #$00
  STA $0202 ; set the sprite attributes (palette, flipping, etc)

  LDA #$33
  STA $0205 ; set the sprite number to display
  LDA #$00
  STA $0206 ; set the sprite attributes (palette, flipping, etc)

  LDA #$34
  STA $0209 ; set the sprite number to display
  LDA #$00
  STA $020A ; set the sprite attributes (palette, flipping, etc)

  LDA #$35
  STA $020D ; set the sprite number to display
  LDA #$00
  STA $020E ; set the sprite attributes (palette, flipping, etc)

  LDA #%00010000   ; enable sprites
  STA $2001

  LDA #%10000000   ; enable NMI interrupts
  STA $2000

loop:
  JMP loop

read_controller1:
  ; latch
  LDA #$01
  STA $4016
  LDA #$00
  STA $4016

  ; clock
  LDX #$00
read_controller1_values:
  CPX #$08
  BPL end_read_controller1

  LDA $4016
  AND #%00000001
  ASL buttons_pressed
  ORA buttons_pressed
  STA buttons_pressed
  INX
  JMP read_controller1_values

end_read_controller1:
  RTS

turn_blue:
  LDA #%10010000
  STA $2001
  LDA #$00
  STA current_state
  RTS

turn_green:
  LDA #%01010000
  STA $2001
  LDA #$01
  STA current_state
  RTS

turn_red:
  LDA #%00110000
  STA $2001
  LDA #$02
  STA current_state
  RTS

NMI:
  JSR read_controller1

handle_up:
  LDA buttons_pressed
  AND #%00001000
  CMP #$00
  BEQ handle_down
  LDY sprite_y
  DEY
  STY sprite_y

handle_down:
  LDA buttons_pressed
  AND #%00000100
  CMP #$00
  BEQ handle_left
  LDY sprite_y
  INY
  STY sprite_y

handle_left:
  LDA buttons_pressed
  AND #%00000010
  CMP #$00
  BEQ handle_right
  LDY sprite_x
  DEY
  STY sprite_x

handle_right:
  LDA buttons_pressed
  AND #%00000001
  CMP #$00
  BEQ handle_a
  LDY sprite_x
  INY
  STY sprite_x

handle_a:
  LDA buttons_pressed
  AND #%10000000
  CMP #$00
  BEQ nmi_return

  LDY current_state
  CPY #$00
  BEQ call_turn_green
  CPY #$01
  BEQ call_turn_red

call_turn_blue:
  JSR turn_blue
  JMP nmi_return
call_turn_green:
  JSR turn_green
  JMP nmi_return
call_turn_red:
  JSR turn_red
  JMP nmi_return

nmi_return:
  ; update the sprite locations
  LDA sprite_y
  STA $0200
  LDA sprite_x
  STA $0203

  LDA sprite_y
  STA $0204
  LDA sprite_x
  ADC #$07 ; XXX why is this #$07 instead of #$08?
  STA $0207

  LDA sprite_y
  ADC #$08
  STA $0208
  LDA sprite_x
  STA $020B

  LDA sprite_y
  ADC #$08
  STA $020C
  LDA sprite_x
  ADC #$08
  STA $020F

  ; load the sprite into the ppu ports (from $0200)
  LDA #$00
  STA $2003
  LDA #$02
  STA $4014

  RTI

palette:
  .db $0F,$31,$32,$33,$0F,$35,$36,$37,$0F,$39,$3A,$3B,$0F,$3D,$3E,$0F
  .db $0F,$1C,$15,$14,$0F,$02,$38,$3C,$0F,$1C,$15,$14,$0F,$02,$38,$3C

  .orga $FFFA    ;first of the three vectors starts here
  .dw NMI        ;when an NMI happens (once per frame if enabled) the 
                   ;processor will jump to the label NMI:
  .dw RESET      ;when the processor first turns on or is reset, it will jump
                   ;to the label RESET:
  .dw 0          ;external interrupt IRQ is not used in this tutorial


  .bank 1 slot 1
  .org $0000
  .incbin "mario.chr"