forked from pizdex/shi-kong-xing-shou
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wram.asm
executable file
·690 lines (568 loc) · 11.6 KB
/
wram.asm
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
INCLUDE "constants.asm"
SECTION "WRAM", WRAM0
wc000::
wVirtualOAM::
wVirtualOAMSprite00:: sprite_oam_struct wVirtualOAMSprite00
wVirtualOAMSprite01:: sprite_oam_struct wVirtualOAMSprite01
wVirtualOAMSprite02:: sprite_oam_struct wVirtualOAMSprite02
wVirtualOAMSprite03:: sprite_oam_struct wVirtualOAMSprite03
wVirtualOAMSprite04:: sprite_oam_struct wVirtualOAMSprite04
wVirtualOAMSprite05:: sprite_oam_struct wVirtualOAMSprite05
wVirtualOAMSprite06:: sprite_oam_struct wVirtualOAMSprite06
wVirtualOAMSprite07:: sprite_oam_struct wVirtualOAMSprite07
wVirtualOAMSprite08:: sprite_oam_struct wVirtualOAMSprite08
wVirtualOAMSprite09:: sprite_oam_struct wVirtualOAMSprite09
wVirtualOAMSprite10:: sprite_oam_struct wVirtualOAMSprite10
wVirtualOAMSprite11:: sprite_oam_struct wVirtualOAMSprite11
wVirtualOAMSprite12:: sprite_oam_struct wVirtualOAMSprite12
wVirtualOAMSprite13:: sprite_oam_struct wVirtualOAMSprite13
wVirtualOAMSprite14:: sprite_oam_struct wVirtualOAMSprite14
wVirtualOAMSprite15:: sprite_oam_struct wVirtualOAMSprite15
wVirtualOAMSprite16:: sprite_oam_struct wVirtualOAMSprite16
wVirtualOAMSprite17:: sprite_oam_struct wVirtualOAMSprite17
wVirtualOAMSprite18:: sprite_oam_struct wVirtualOAMSprite18
wVirtualOAMSprite19:: sprite_oam_struct wVirtualOAMSprite19
wVirtualOAMSprite20:: sprite_oam_struct wVirtualOAMSprite20
wVirtualOAMSprite21:: sprite_oam_struct wVirtualOAMSprite21
wVirtualOAMSprite22:: sprite_oam_struct wVirtualOAMSprite22
wVirtualOAMSprite23:: sprite_oam_struct wVirtualOAMSprite23
wVirtualOAMSprite24:: sprite_oam_struct wVirtualOAMSprite24
wVirtualOAMSprite25:: sprite_oam_struct wVirtualOAMSprite25
wVirtualOAMSprite26:: sprite_oam_struct wVirtualOAMSprite26
wVirtualOAMSprite27:: sprite_oam_struct wVirtualOAMSprite27
wVirtualOAMSprite28:: sprite_oam_struct wVirtualOAMSprite28
wVirtualOAMSprite29:: sprite_oam_struct wVirtualOAMSprite29
wVirtualOAMSprite30:: sprite_oam_struct wVirtualOAMSprite30
wVirtualOAMSprite31:: sprite_oam_struct wVirtualOAMSprite31
wVirtualOAMSprite32:: sprite_oam_struct wVirtualOAMSprite32
wVirtualOAMSprite33:: sprite_oam_struct wVirtualOAMSprite33
wVirtualOAMSprite34:: sprite_oam_struct wVirtualOAMSprite34
wVirtualOAMSprite35:: sprite_oam_struct wVirtualOAMSprite35
wVirtualOAMSprite36:: sprite_oam_struct wVirtualOAMSprite36
wVirtualOAMSprite37:: sprite_oam_struct wVirtualOAMSprite37
wVirtualOAMSprite38:: sprite_oam_struct wVirtualOAMSprite38
wVirtualOAMSprite39:: sprite_oam_struct wVirtualOAMSprite39
wVirtualOAMEnd::
wc0a0:: ds $10
wBGMapBufferPointers:: ds $38
wc0e8:: ds $18
wMapLayout:: ds $640
wc740:: ds $1e0
; c920
wTilemap::
; 20x18 grid of 8x8 tiles
ds SCREEN_WIDTH * SCREEN_HEIGHT
wTilemapEnd::
wca88:: ds $28
wcab0:: ds $40
wcaf0:: ds 8 * 8
wcb30:: ds $a0
wcbd0:: ds $20
wCharacterTilemapPos:: ds 1
wTextLine:: ds 1
wCharacterTileCount:: ds 1
wcbf3:: ds 1
wCharacterBGMapTransferStatus:: ds 1
wCharacterTileTransferStatus:: ds 1
wcbf6:: ds 1
wTextNameID:: ds 1
wScriptPos:: ds 2
wScriptByte:: ds 1
wSelectedObjectOffset:: ds 1 ; relative to wVisibleObjects
wcbfc:: ds 1
wcbfd:: ds 1
wTextStart:: ds 2
; eight 4-color palettes each
wBGPals1:: ds 8 palettes
wOBPals1:: ds 8 palettes
wBGPals2:: ds 8 palettes
wOBPals2:: ds 8 palettes
UNION
wcd00:: ds 1 ; Distance to warp border y
wcd01:: ds 1 ; Distance to warp border x
wcd02:: ds 1
wcd03:: ds 1 ; Facing direction
wcd04:: ds 1 ; OW sprite ID?
wcd05:: ds 1
wcd06:: ds 1
wcd07:: ds 1
wcd08:: ds 1
wcd09:: ds 1
wcd0a:: ds 1
wcd0b:: ds 1
wcd0c:: ds 6
wcd12:: ds 1
wcd13:: ds 1
wcd14:: ds $c
wcd20:: ds 1
wcd21:: ds 1
wcd22:: ds 1
wcd23:: ds 1
wcd24:: ds 1
wcd25:: ds 1
wcd26:: ds 1
wcd27:: ds $19
wcd40:: ds 1
wcd41:: ds 1
wcd42:: ds 1
wcd43:: ds 1
wcd44:: ds 1
wcd45:: ds 11
wcd50:: ds 1
wcd51:: ds 1
wcd52:: ds 1
wcd53:: ds 1
wcd54:: ds 1
wcd55:: ds 1
wcd56:: ds 1
wcd57:: ds 1
wcd58:: ds 1
wcd59:: ds 1
wcd5a:: ds 1
wcd5b:: ds 1
wcd5c:: ds 1
wcd5d:: ds 1
wcd5e:: ds 1
wcd5f:: ds 1
wcd60:: ds 1
ds 4
wcd65:: ds 1
wcd66:: ds 1
wcd67:: ds 1
ds $78
NEXTU
wVisibleObjects::
wPlayerObject::
ds $20
wFollowerObject::
ds $20
wNPCObjects::
ds $20 ; id 2
ds $20 ; id 3
ds $20 ; id 4
ds $20 ; id 5
ds $20 ; id 6
ENDU
; Start menu
wcde0:: ds 1
wcde1:: ds 1
wcde2:: ds 1
wcde3:: ds $1d
wce00:: ds $100
wcf00:: ds $100
SECTION "WRAM1", WRAMX
wd000:: ds $80
wd080:: ds 1
wd081:: ds 1
wd082:: ds 1
wd083:: ds 1
wd084:: ds 1
wTextDelayFrames:: ds 1
wd086:: ds 1
wd087:: ds 1
wd088:: ds 2
wd08a:: ds 1
wd08b:: ds 1
wd08c:: ds 1
wd08d:: ds 1 ; selected page
wd08e:: ds 1 ; selected option
wLoadedROMBank:: ds 1
wd090:: ds 1
wd091:: ds 1
wd092:: ds $e
wMapAttributes::
wMapLayoutPointer:: ds 2
wMapBlocksPointer:: ds 2
wMapMetatilesPointer:: ds 2
wMapGBCAttrPointer:: ds 2
wMapPalettesPointer:: ds 2
wMapTileset1Pointer:: ds 2
wMapTileset2Pointer:: ds 2
wd0ae:: ds 2
wMapCollisionsPointer:: ds 2
wd0b2:: ds 2
wd0b4:: ds 1
wd0b5:: ds 1
wd0b6:: ds 2
ds 2
wd0ba:: ds 1
wd0bb:: ds 1
wd0bc:: ds 4
wd0c0:: ds 1
wd0c1:: ds 1
wd0c2:: ds 1
wd0c3:: ds 1
wd0c4:: ds 2
wd0c6:: ds 2
wd0c8:: ds 1
wPlayerSpriteX:: ds 1
wPlayerSpriteY:: ds 1
wMapAttrPointer:: ds 2
wObjectEventPointer:: ds 2
wTextboxPointer:: ds 2
wd0d1:: ds 2
wd0d3:: ds 1
wd0d4:: ds 1 ; step counter
wd0d5:: ds 1
wd0d6:: ds 1
wMoney:: ds 3
wd0da:: ds 1
wGameTimeHours:: ds 1
wGameTimeMinutes:: ds 1
ds 2
wd0df:: ds 1
wd0e0:: ds 3
wd0e3:: ds 1
wd0e4:: ds $a
wd0ee:: ds 1
wd0ef:: ds 1
wd0f0:: ds 1
wd0f1:: ds 1
wd0f2:: ds 2
wd0f4:: ds 1
wd0f5:: ds 1
wCharacterTileDest:: ds 2
wd0f8:: ds 1
wd0f9:: ds 1
wTargetMode:: ds 1
wd0fb:: ds 2
wd0fd:: ds 2
wd0ff:: ds 1
wd100:: ds $28 ; wTextboxAttrmap?
wd128:: ds $78
wd1a0:: ds 8
wd1a8:: ds 8
wd1b0:: ds $32
wd1e2:: ds 1
wd1e3:: ds 1
ds 13
wd1f1:: ds 1
wd1f2:: ds 2
wd1f4:: ds 1
ds 4
wd1f9:: ds 1
wd1fa:: ds 1
wd1fb:: ds 1
wd1fc:: ds 1
ds 3
wPartyMons::
wPartyMon1:: party_struct wPartyMon1
wPartyMon2:: party_struct wPartyMon2
wPartyMon3:: party_struct wPartyMon3
wPartyMon4:: party_struct wPartyMon4
wPartyMon5:: party_struct wPartyMon5
wPartyMon6:: party_struct wPartyMon6
wd284:: ds $7c
; Items (ID, Quantity)
wd300:: ds $f4
wd3f4:: ds 1
; collision related
wd3f5:: ds 1
wd3f6:: ds 1
wd3f7:: ds 1
wd3f8:: ds 1
wd3f9:: ds 5
wBattleIntroJumptableIndex:: ds 1
wd3ff:: ds 1
; sound engine
wd400:: ds 1
ds 1
wd402:: ds 1
wSoundCurChannel:: ds 1
wCurrentSongID:: ds 1
wSoundNumChannels:: ds 1
wd406:: ds 1
wd407:: ds 1
wd408:: ds 1
wd409:: ds 1
wSound1LastWaveform:: ds 1
wSound1FadeEnabled:: ds 1
wSound1FadeTimer:: ds 1
wd40d:: ds 1
; music channels
wChannels::
wChannel1:: channel_struct wChannel1
wChannel2:: channel_struct wChannel2
wChannel3:: channel_struct wChannel3
wChannel4:: channel_struct wChannel4
; sfx channels
wSFXChannels::
wChannel5:: channel_struct wChannel5
wChannel6:: channel_struct wChannel6
wChannel7:: channel_struct wChannel7
wChannel8:: channel_struct wChannel8
wCh1DataCurrentSweep:: ds 1
wCh1DataCurrentDutyLength:: ds 1
wCh1DataCurrentEnvelope:: ds 1
wCh1DataCurrentFrequency:: ds 2
wCh2DataCurrentDutyLength:: ds 1
wCh2DataCurrentEnvelope:: ds 1
wCh2DataCurrentFrequency:: ds 2
wCh3DataEnable:: ds 2
wCh3DataCurrentVolume:: ds 1
wCh3DataCurrentFrequency:: ds 2
wCh4DataCurrentLength:: ds 1
wCh4DataCurrentEnvelope:: ds 1
wCh4DataCurrentFrequency:: ds 2
wSoundGlobalStereo:: ds 1
wSoundStereoChannels:: ds 2
wCh1DataLastSweep:: ds 1
wCh1DataLastDutyLength:: ds 1
wCh1DataLastEnvelope:: ds 1
wCh1DataLastFrequency:: ds 2
wCh2DataLastDutyLength:: ds 1
wCh2DataLastEnvelope:: ds 1
wCh2DataLastFrequency:: ds 2
wCh3DataLastEnable:: ds 2
wCh3DataLastVolume:: ds 1
wCh3DataLastFrequency:: ds 2
wd591:: ds 1
wd592:: ds 1
wd593:: ds 2
wd595:: ds 1
wd596:: ds 1
wd597:: ds 1
wCh1NoteCounter:: ds 1 ; 98
wCh2NoteCounter:: ds 1
ds 1
wCh4DataLastEnvelope:: ds 1
ds $6b
wd607:: ds 1
wCh3TargetWaveform:: ds 1
wCh7TargetWaveform:: ds 1
wSound2LastWaveform:: ds 1
wSound2FadeEnabled:: ds 1
wSound2FadeTimer:: ds 1
wd60d:: ds 1
ds 8
wd616:: ds $2c
wd642:: ds $14
wd656:: ds 1
wd657:: ds 1
wd658:: ds $16
wd66e:: ds $1c
wd68a:: ds $10
wd69a:: ds 1
ds $23
wd6be:: ds 1
ds 7
wd6c6:: ds 1
ds $23
wd6ea:: ds 1
ds 7
wd6f2:: ds 1
ds $17
wd70a:: ds 1
ds $13
wd71e:: ds 1
ds $2b
wd74a:: ds $81
wd7cb:: ds $9f ; mon dex
wd86a:: ds 12
wd876:: ds $16
wd88c:: ds $6e
wd8fa:: ds 4
wd8fe:: ds 1
wd8ff:: ds 1
wd900:: ds $3c
wd93c:: ds $3c
wd978:: ds 4
wd97c:: ds 5
wd981:: ds 2
wd983:: ds 1
wd984:: ds 2
wd986:: ds 1
wd987:: ds 1
wd988:: ds 1
wd989:: ds 1
wd98a:: ds 1
wd98b:: ds 1
wd98c:: ds 3
wd98f:: ds 1
wd990:: ds 1
wd991:: ds 2
wd993:: ds 1
wd994:: ds 1
wd995:: ds 1
wd996:: ds 1
wd997:: ds 1
wd998:: ds 1
wd999:: ds 1
wd99a:: ds 1
wd99b:: ds 1
wd99c:: ds $f
wd9ab:: ds 1
wd9ac:: ds 1
wd9ad:: ds 2
wd9af:: ds 3
wd9b2:: ds 1
wd9b3:: ds 1
wd9b4:: ds 1
wd9b5:: ds 1
wd9b6:: ds 2
wd9b8:: ds 1
wd9b9:: ds 3
wd9bc:: ds 1
wd9bd:: ds 1
wd9be:: ds 1
wd9bf:: ds 1
wCharacterTileSrc:: ds 2
wd9c2:: ds 8
wd9ca:: ds 1
wd9cb:: ds 1
wd9cc:: ds 2
wd9ce:: ds 2
wd9d0:: ds 2
wd9d2:: ds 1
wd9d3:: ds 1
wd9d4:: ds 2
wd9d6:: ds 1
wd9d7:: ds 1
wd9d8:: ds 1
wd9d9:: ds 1
wd9da:: ds 2
wd9dc:: ds 1
wd9dd:: ds 1
wWX:: ds 1
wWY:: ds 1
wd9e0:: ds 1
wd9e1:: ds 1
wd9e2:: ds 1
wd9e3:: ds 1
wEnemyMonSpecies:: ds 1
wd9e5:: ds 4
wd9e9:: ds 1
wd9ea:: ds 1
wd9eb:: ds 1
wd9ec:: ds 1
wd9ed:: ds 1
wd9ee:: ds 1
wd9ef:: ds 1
wTempBank:: ds 1
wd9f1:: ds 2
wd9f3:: ds 1
wd9f4:: ds 1
wd9f5:: ds 1
wd9f6:: ds 1
wd9f7:: ds 1
wd9f8:: ds 1
wTilesetBank:: ds 1
wd9fa:: ds 1
wd9fb:: ds 1
wd9fc:: ds 1
wd9fd:: ds 1
wd9fe:: ds 1
wd9ff:: ds 1
wda00:: ds $a0
wdaa0:: ds 1
wdaa1:: ds 1
wdaa2:: ds 1
wdaa3:: ds 1
wdaa4:: ds 1 ; shop menu
wdaa5:: ds 1
wdaa6:: ds 1
wdaa7:: ds 1
wdaa8:: ds 1
wdaa9:: ds 1
wdaaa:: ds 1
wdaab:: ds 1
wdaac:: ds 1
wdaad:: ds 1
wdaae:: ds 1
wdaaf:: ds 1
wdab0:: ds 1
wdab1:: ds 1
wdab2:: ds 1
wdab3:: ds 1
wdab4:: ds 1
wdab5:: ds 1
wdab6:: ds 1
wdab7:: ds 1
wdab8:: ds 1
wdab9:: ds $15
wTextBGMapPointer:: ds 2
wdad0:: ds $10
wdae0:: ds 2
wdae2:: ds 1
wdae3:: ds 4
wdae7:: ds 4
wdaeb:: ds $2d
wdb18:: ds 3
wGameTimeSeconds:: ds 1
wdb1c:: ds 1
wdb1d:: ds 1
wCurrentCharacterByte:: ds 1
wdb1f:: ds 1
wdb20:: ds $17e
wdc9e:: ds 1
wdc9f:: ds 1
ds 13
wdcad:: ds 1
ds 2
wdcb0:: ds 1
wdcb1:: ds 1
wdcb2:: ds 1
wdcb3:: ds 1
wdcb4:: ds 1
wdcb5:: ds 1
wdcb6:: ds 1
wdcb7:: ds 1
ds 2
wdcba:: ds 1
wdcbb:: ds $d
wMovementPointer:: ds 2
wdcca:: ds 1
wdccb:: ds 1
wdccc:: ds 1
wdccd:: ds 1
wdcce:: ds 1
wdccf:: ds 1
wdcd0:: ds 1
wdcd1:: ds 2
wdcd3:: ds 2
wdcd5:: ds 3
wTextFaceID:: ds 1
wdcd9:: ds 1
wdcda:: ds 3
wdcdd:: ds 1
wdcde:: ds 2
wCharacterTilePos:: ds 1
wdce1:: ds 1
wdce2:: ds 1
; 0 = bottom half, 1 = top half
wTextboxPos:: ds 1
wdce4:: ds 1
wdce5:: ds 2
wdce7:: ds 1
wdce8:: ds 2
wdcea:: ds 1 ; follower?
wdceb:: ds 1
wdcec:: ds 7
wdcf3:: ds 1
wdcf4:: ds 1
wdcf5:: ds 1
wdcf6:: ds 1
wdcf7:: ds 1
wdcf8:: ds 1
wdcf9:: ds 1
wdcfa:: ds 1
wdcfb:: ds 1
wdcfc:: ds 1
wdcfd:: ds 1
wdcfe:: ds 1
wdcff:: ds 1
wdd00:: ds $18
wdd18:: ds $38
wdd50:: ds 1
ds $5f
wddb0:: ds $50
wde00:: ds $16
wde16:: ds $16
wde2c:: ds $16
wde42:: ds $16
wde58:: ds $16
wde6e:: ds $16
wde84:: ds $16
wde9a:: ds $66
wMapEvents:: ds $ff
wdfff:: ds 1