-
Notifications
You must be signed in to change notification settings - Fork 840
Expand file tree
/
Copy pathPICO-8.dat
More file actions
18449 lines (15376 loc) · 374 KB
/
PICO-8.dat
File metadata and controls
18449 lines (15376 loc) · 374 KB
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
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
clrmamepro (
name "PICO-8"
description "PICO-8: Sourced from PICOwesome v1.5"
version "v1.5"
date "2024-04-12"
author "libretro"
homepage "https://github.com/libretro/libretro-database"
url "https://github.com/libretro/libretro-database/blob/master/dat/PICO-8.dat"
comment "https://www.reddit.com/r/Roms/comments/1c2wcdg/picowesome_v15_apr122024/"
)
game (
name "'Fit' Santa"
description "'Fit' Santa"
rom ( name "'Fit' Santa.p8" size 41055 crc 2562dc9a )
)
game (
name "(Don't Fear The) WORMHOLE! (v1.0)"
description "(Don't Fear The) WORMHOLE! (v1.0)"
rom ( name "(Don't Fear The) WORMHOLE! (v1.0).p8" size 25749 crc b3ba1a29 )
)
game (
name "10 Seconds, 9 Lives"
description "10 Seconds, 9 Lives"
rom ( name "10 Seconds, 9 Lives.p8" size 28607 crc eec441f7 )
)
game (
name "1000 Meters to Shade"
description "1000 Meters to Shade"
rom ( name "1000 Meters to Shade.p8" size 10838 crc db68a43d )
)
game (
name "13 Jumps"
description "13 Jumps"
rom ( name "13 Jumps.p8" size 44462 crc 8678f056 )
)
game (
name "144 Floors"
description "144 Floors"
rom ( name "144 Floors.p8" size 28661 crc 8126ee72 )
)
game (
name "16 Greens"
description "16 Greens"
rom ( name "16 Greens.p8" size 21230 crc 05e8b2a8 )
)
game (
name 194-8
description "194-8"
rom ( name 194-8.p8 size 33454 crc 41d1060c )
)
game (
name "1k Defender"
description "1k Defender"
rom ( name "1k Defender.p8" size 7145 crc 84dc2d26 )
)
game (
name "1x2 [Hack]"
description "1x2 [Hack]"
rom ( name "1x2 [Hack].p8" size 29779 crc 58c2e6bb )
)
game (
name "2-minute Picovania"
description "2-minute Picovania"
rom ( name "2-minute Picovania.p8" size 51841 crc 3eb91023 )
)
game (
name 2tris
description "2tris"
rom ( name 2tris.p8 size 6384 crc 431ad1f1 )
)
game (
name "3D Picoh Mummy"
description "3D Picoh Mummy"
rom ( name "3D Picoh Mummy.p8" size 35949 crc f6c9b5f7 )
)
game (
name "3D Space Shooter!"
description "3D Space Shooter!"
rom ( name "3D Space Shooter!.p8" size 29665 crc b9062287 )
)
game (
name "4 Giga Boss Fights"
description "4 Giga Boss Fights"
rom ( name "4 Giga Boss Fights.p8" size 38220 crc 4d413351 )
)
game (
name "4-Bit Maze"
description "4-Bit Maze"
rom ( name "4-Bit Maze.p8" size 15241 crc 81b4f701 )
)
game (
name "456 Tahini"
description "456 Tahini"
rom ( name "456 Tahini.p8" size 15710 crc e75a9350 )
)
game (
name 4Block
description "4Block"
rom ( name 4Block.p8 size 29436 crc 31132d94 )
)
game (
name "512px under"
description "512px under"
rom ( name "512px under.p8" size 41691 crc 290012c9 )
)
game (
name "688i Pico Killer"
description "688i Pico Killer"
rom ( name "688i Pico Killer.p8" size 11023 crc f76149a1 )
)
game (
name "8 Legs to Love"
description "8 Legs to Love"
rom ( name "8 Legs to Love.p8" size 46479 crc 2f8891ee )
)
game (
name "8-00 AM"
description "8-00 AM"
rom ( name "8-00 AM.p8" size 17852 crc 61eb283d )
)
game (
name "8-Bit Ultimate Frisbee"
description "8-Bit Ultimate Frisbee"
rom ( name "8-Bit Ultimate Frisbee.p8" size 31966 crc 415b0b9f )
)
game (
name 8-Invaders
description "8-Invaders"
rom ( name 8-Invaders.p8 size 15015 crc be89e54e )
)
game (
name "8Bit Emperor"
description "8Bit Emperor"
rom ( name "8Bit Emperor.p8" size 25777 crc 9e9f621d )
)
game (
name "8VENTURE (v7.6)"
description "8VENTURE (v7.6)"
rom ( name "8VENTURE (v7.6).p8" size 32410 crc b16b0d6a )
)
game (
name 9Hole
description "9Hole"
rom ( name 9Hole.p8 size 35977 crc b5ba988e )
)
game (
name "[ data restored ]"
description "[ data restored ]"
rom ( name "[ data restored ].p8" size 26628 crc 95af4b38 )
)
game (
name "_eleste [Hack]"
description "_eleste [Hack]"
rom ( name "_eleste [Hack].p8" size 36361 crc b7356f22 )
)
game (
name "A dicy boss fight"
description "A dicy boss fight"
rom ( name "A dicy boss fight.p8" size 25848 crc 84da217e )
)
game (
name "A Doukutsu Demake"
description "A Doukutsu Demake"
rom ( name "A Doukutsu Demake.p8" size 50398 crc 948aad97 )
)
game (
name "A Dream's Command (v2.2)"
description "A Dream's Command (v2.2)"
rom ( name "A Dream's Command (v2.2).p8" size 51173 crc 66f638a6 )
)
game (
name "A Hat on Time"
description "A Hat on Time"
rom ( name "A Hat on Time.p8" size 28768 crc 73b677fa )
)
game (
name "A Healthy Dose of Dungeon"
description "A Healthy Dose of Dungeon"
rom ( name "A Healthy Dose of Dungeon.p8" size 37570 crc 33c9b9b5 )
)
game (
name "A Messenger's Tale"
description "A Messenger's Tale"
rom ( name "A Messenger's Tale.p8" size 35176 crc c4b7670f )
)
game (
name "A Quiet Place"
description "A Quiet Place"
rom ( name "A Quiet Place.p8" size 30886 crc ba150ecf )
)
game (
name "A Small Dragon Kid Game v0.1"
description "A Small Dragon Kid Game v0.1"
rom ( name "A Small Dragon Kid Game v0.1.p8" size 28886 crc ef5b7429 )
)
game (
name "A Very Warm Fire"
description "A Very Warm Fire"
rom ( name "A Very Warm Fire.p8" size 28620 crc cd89a56e )
)
game (
name "A William Christmas"
description "A William Christmas"
rom ( name "A William Christmas.p8" size 10660 crc fb0aeb04 )
)
game (
name A.N.N.A
description "A.N.N.A"
rom ( name A.N.N.A.p8 size 23021 crc 1c6bd82c )
)
game (
name "A82-Recon 3038"
description "A82-Recon 3038"
rom ( name "A82-Recon 3038.p8" size 38400 crc b96edea1 )
)
game (
name "Aaron's Quest"
description "Aaron's Quest"
rom ( name "Aaron's Quest.p8" size 23488 crc e21877ca )
)
game (
name "Abandoned [Hack]"
description "Abandoned [Hack]"
rom ( name "Abandoned [Hack].p8" size 41203 crc 44b90efb )
)
game (
name "About 1600mm"
description "About 1600mm"
rom ( name "About 1600mm.p8" size 21251 crc 9f5e1e3c )
)
game (
name "Abysmal Ascent"
description "Abysmal Ascent"
rom ( name "Abysmal Ascent.p8" size 37580 crc c43fee86 )
)
game (
name "Acceler-8 (v3.0)"
description "Acceler-8 (v3.0)"
rom ( name "Acceler-8 (v3.0).p8" size 42393 crc 2cffd7c5 )
)
game (
name "Achievement Unlocked! (v1.02)"
description "Achievement Unlocked! (v1.02)"
rom ( name "Achievement Unlocked! (v1.02).p8" size 41730 crc 1cc52de0 )
)
game (
name "Aconcagua [Hack]"
description "Aconcagua [Hack]"
rom ( name "Aconcagua [Hack].p8" size 35871 crc 98e6a145 )
)
game (
name "Across The River"
description "Across The River"
rom ( name "Across The River.p8" size 32224 crc 1a388af9 )
)
game (
name "Action Racer"
description "Action Racer"
rom ( name "Action Racer.p8" size 21627 crc c55c6525 )
)
game (
name "Adelie - Someone Like You"
description "Adelie - Someone Like You"
rom ( name "Adelie - Someone Like You.p8" size 19605 crc 8e30d14c )
)
game (
name "Adelie - Water Under the Bridge"
description "Adelie - Water Under the Bridge"
rom ( name "Adelie - Water Under the Bridge.p8" size 31260 crc 8394195c )
)
game (
name "Adelie [Hack]"
description "Adelie [Hack]"
rom ( name "Adelie [Hack].p8" size 40718 crc 14626161 )
)
game (
name "Adelie Golf [Hack] (v1.1)"
description "Adelie Golf [Hack] (v1.1)"
rom ( name "Adelie Golf [Hack] (v1.1).p8" size 39181 crc 64e4bb05 )
)
game (
name Admiral
description "Admiral"
rom ( name Admiral.p8 size 28147 crc 64d30042 )
)
game (
name Adrift
description "Adrift"
rom ( name Adrift.p8 size 39687 crc 7b45392e )
)
game (
name "Adrift - Destination Not Found"
description "Adrift - Destination Not Found"
rom ( name "Adrift - Destination Not Found.p8" size 51399 crc 0b44b5de )
)
game (
name "Advent Calendar 2018"
description "Advent Calendar 2018"
rom ( name "Advent Calendar 2018.p8" size 44104 crc c2e88863 )
)
game (
name "Advent Calendar 2019"
description "Advent Calendar 2019"
rom ( name "Advent Calendar 2019.p8" size 34409 crc bd6c4b8b )
)
game (
name "Advent Calendar 2020"
description "Advent Calendar 2020"
rom ( name "Advent Calendar 2020.p8" size 15503 crc 2e384b72 )
)
game (
name "Adventure Creator"
description "Adventure Creator"
rom ( name "Adventure Creator.p8" size 29682 crc 88927bff )
)
game (
name "Adventure Time World 2®"
description "Adventure Time World 2®"
rom ( name "Adventure Time World 2®.p8" size 22772 crc ec6eeb35 )
)
game (
name "Aeroplane Adventure"
description "Aeroplane Adventure"
rom ( name "Aeroplane Adventure.p8" size 22591 crc b77dc2c9 )
)
game (
name "Afterlife Animate"
description "Afterlife Animate"
rom ( name "Afterlife Animate.p8" size 17799 crc 7f960289 )
)
game (
name "Again! (Update 3)"
description "Again! (Update 3)"
rom ( name "Again! (Update 3).p8" size 21687 crc b4070e2b )
)
game (
name "Age of Ants (v1.7)"
description "Age of Ants (v1.7)"
rom ( name "Age of Ants (v1.7).p8" size 63203 crc 3338138c )
)
game (
name "AI Saboteur"
description "AI Saboteur"
rom ( name "AI Saboteur.p8" size 53743 crc 5cb3a35d )
)
game (
name "Aimless fall"
description "Aimless fall"
rom ( name "Aimless fall.p8" size 44879 crc 86aaaa58 )
)
game (
name "Air Delivery (v2)"
description "Air Delivery (v2)"
rom ( name "Air Delivery (v2).p8" size 39436 crc 8779b66b )
)
game (
name "Air Raiders"
description "Air Raiders"
rom ( name "Air Raiders.p8" size 14194 crc 820c4f89 )
)
game (
name Airport
description "Airport"
rom ( name Airport.p8 size 21510 crc c48c7674 )
)
game (
name "Airwolf Pico"
description "Airwolf Pico"
rom ( name "Airwolf Pico.p8" size 25834 crc 46e211d1 )
)
game (
name "Ajnin Star"
description "Ajnin Star"
rom ( name "Ajnin Star.p8" size 20988 crc 98578470 )
)
game (
name Alarmed!
description "Alarmed!"
rom ( name Alarmed!.p8 size 15203 crc 5ffbc7b0 )
)
game (
name "Alchemy Deluxe"
description "Alchemy Deluxe"
rom ( name "Alchemy Deluxe.p8" size 33324 crc 81bdefc4 )
)
game (
name "Alex Kidd in Pico World"
description "Alex Kidd in Pico World"
rom ( name "Alex Kidd in Pico World.p8" size 43294 crc 32fd3d08 )
)
game (
name "Alfonzo's Bowling Challenge"
description "Alfonzo's Bowling Challenge"
rom ( name "Alfonzo's Bowling Challenge.p8" size 49790 crc 1b479f5e )
)
game (
name "Alfredo's Stupendous Surprise"
description "Alfredo's Stupendous Surprise"
rom ( name "Alfredo's Stupendous Surprise.p8" size 50527 crc b2f729d5 )
)
game (
name "Alien Abduction"
description "Alien Abduction"
rom ( name "Alien Abduction.p8" size 20653 crc 444a472c )
)
game (
name "Alien Border Patrol"
description "Alien Border Patrol"
rom ( name "Alien Border Patrol.p8" size 12867 crc a0d3caaa )
)
game (
name "Alien Disco"
description "Alien Disco"
rom ( name "Alien Disco.p8" size 19983 crc 1e04fce6 )
)
game (
name "Alien Fish Invasion"
description "Alien Fish Invasion"
rom ( name "Alien Fish Invasion.p8" size 25532 crc 8e6f1e3d )
)
game (
name "Alien Game Episode 1 - The City"
description "Alien Game Episode 1 - The City"
rom ( name "Alien Game Episode 1 - The City.p8" size 45365 crc b73dd26d )
)
game (
name "Alien Harvest"
description "Alien Harvest"
rom ( name "Alien Harvest.p8" size 39409 crc e11831e6 )
)
game (
name "Alien Lab Survival"
description "Alien Lab Survival"
rom ( name "Alien Lab Survival.p8" size 25333 crc 347f4e07 )
)
game (
name "Alien Rescue Mission"
description "Alien Rescue Mission"
rom ( name "Alien Rescue Mission.p8" size 33159 crc e0331a11 )
)
game (
name Aliencallection
description "Aliencallection"
rom ( name Aliencallection.p8 size 33668 crc f293b56a )
)
game (
name Allocation
description "Allocation"
rom ( name Allocation.p8 size 26330 crc 4237728b )
)
game (
name "Alone in Pico"
description "Alone in Pico"
rom ( name "Alone in Pico.p8" size 56081 crc 24abd425 )
)
game (
name "Alpha Strike Deluxe"
description "Alpha Strike Deluxe"
rom ( name "Alpha Strike Deluxe.p8" size 28820 crc 492a6dcf )
)
game (
name "Alpine Alpaca"
description "Alpine Alpaca"
rom ( name "Alpine Alpaca.p8" size 43229 crc 1b80721c )
)
game (
name "Alpine Ascent (v1.1)"
description "Alpine Ascent (v1.1)"
rom ( name "Alpine Ascent (v1.1).p8" size 26935 crc 6b1afb8b )
)
game (
name "Altered States"
description "Altered States"
rom ( name "Altered States.p8" size 29967 crc 1229a023 )
)
game (
name "ALTU - Tarb's Quest [Demo][Hack]"
description "ALTU - Tarb's Quest [Demo][Hack]"
rom ( name "ALTU - Tarb's Quest [Demo][Hack].p8" size 33114 crc b26ca92d )
)
game (
name "Amazeball Dudes"
description "Amazeball Dudes"
rom ( name "Amazeball Dudes.p8" size 34181 crc 4db0b963 )
)
game (
name "American barbecue"
description "American barbecue"
rom ( name "American barbecue.p8" size 23442 crc 2897bed5 )
)
game (
name Amidar
description "Amidar"
rom ( name Amidar.p8 size 44290 crc a5490565 )
)
game (
name "Amidus (v3.2)"
description "Amidus (v3.2)"
rom ( name "Amidus (v3.2).p8" size 10518 crc 9cc83e1e )
)
game (
name "Amika's Quest"
description "Amika's Quest"
rom ( name "Amika's Quest.p8" size 33600 crc 7d50188a )
)
game (
name "AmiQuest - The Game (v1.2)"
description "AmiQuest - The Game (v1.2)"
rom ( name "AmiQuest - The Game (v1.2).p8" size 62608 crc 2e7556f2 )
)
game (
name "Among Us 2"
description "Among Us 2"
rom ( name "Among Us 2.p8" size 24524 crc cf0a8ed1 )
)
game (
name "Anchors & Miners"
description "Anchors & Miners"
rom ( name "Anchors & Miners.p8" size 16642 crc 52e6ac17 )
)
game (
name "Ancient Bedtime Smackdown"
description "Ancient Bedtime Smackdown"
rom ( name "Ancient Bedtime Smackdown.p8" size 25330 crc b3d04270 )
)
game (
name "Anna and Bob's Limited Mirror Adventure"
description "Anna and Bob's Limited Mirror Adventure"
rom ( name "Anna and Bob's Limited Mirror Adventure.p8" size 8673 crc 5ce6bc45 )
)
game (
name "Annabelle - The half demon"
description "Annabelle - The half demon"
rom ( name "Annabelle - The half demon.p8" size 29213 crc b243cc97 )
)
game (
name "Another Breakout"
description "Another Breakout"
rom ( name "Another Breakout.p8" size 19908 crc 209fa44c )
)
game (
name "Another Space Shooter"
description "Another Space Shooter"
rom ( name "Another Space Shooter.p8" size 31391 crc 32282291 )
)
game (
name "Another Tetris"
description "Another Tetris"
rom ( name "Another Tetris.p8" size 11850 crc cde29947 )
)
game (
name "Another World - Survival"
description "Another World - Survival"
rom ( name "Another World - Survival.p8" size 37538 crc becbd7f5 )
)
game (
name Anteform
description "Anteform"
rom ( name Anteform.p8 size 51861 crc 6970a669 )
)
game (
name Antiban
description "Antiban"
rom ( name Antiban.p8 size 23657 crc 2efaba8d )
)
game (
name "Antsy Alien Attack Pico"
description "Antsy Alien Attack Pico"
rom ( name "Antsy Alien Attack Pico.p8" size 43701 crc 3582a55f )
)
game (
name "Anx - Social Anxiety Simulator"
description "Anx - Social Anxiety Simulator"
rom ( name "Anx - Social Anxiety Simulator.p8" size 40793 crc a45516a9 )
)
game (
name "Anywhere for you"
description "Anywhere for you"
rom ( name "Anywhere for you.p8" size 30033 crc e881d3f3 )
)
game (
name "Ape Approacher"
description "Ape Approacher"
rom ( name "Ape Approacher.p8" size 29127 crc c7552b96 )
)
game (
name "Ape Clerk v1.2"
description "Ape Clerk v1.2"
rom ( name "Ape Clerk v1.2.p8" size 14501 crc 52c02b34 )
)
game (
name "Apex Point (Update 4)"
description "Apex Point (Update 4)"
rom ( name "Apex Point (Update 4).p8" size 37895 crc b0eebf5f )
)
game (
name Apodynia
description "Apodynia"
rom ( name Apodynia.p8 size 36435 crc 699df098 )
)
game (
name "Apparitional Abode"
description "Apparitional Abode"
rom ( name "Apparitional Abode.p8" size 31332 crc d39a2987 )
)
game (
name "Apple Bomb [Cherry Bomb Hack]"
description "Apple Bomb [Cherry Bomb Hack]"
rom ( name "Apple Bomb [Cherry Bomb Hack].p8" size 27909 crc 60d4f468 )
)
game (
name Applebliteration
description "Applebliteration"
rom ( name Applebliteration.p8 size 11841 crc d3079aca )
)
game (
name "Applecart - Star Wars"
description "Applecart - Star Wars"
rom ( name "Applecart - Star Wars.p8" size 18090 crc 2c9843e2 )
)
game (
name "Apprentice Quest"
description "Apprentice Quest"
rom ( name "Apprentice Quest.p8" size 34940 crc 0e3ddf91 )
)
game (
name "Archery Princess"
description "Archery Princess"
rom ( name "Archery Princess.p8" size 20892 crc e2373406 )
)
game (
name Archimedes!!
description "Archimedes!!"
rom ( name Archimedes!!.p8 size 18426 crc 88849345 )
)
game (
name "Arctic Wolf"
description "Arctic Wolf"
rom ( name "Arctic Wolf.p8" size 33171 crc 7cf57496 )
)
game (
name "Area 51"
description "Area 51"
rom ( name "Area 51.p8" size 26866 crc 87bb9363 )
)
game (
name "Arena Shooter"
description "Arena Shooter"
rom ( name "Arena Shooter.p8" size 17163 crc dde852b9 )
)
game (
name Arkamoin
description "Arkamoin"
rom ( name Arkamoin.p8 size 33634 crc 3e0e96b1 )
)
game (
name Armadillo
description "Armadillo"
rom ( name Armadillo.p8 size 36467 crc 654255e9 )
)
game (
name "Armor Pico (v1.2)"
description "Armor Pico (v1.2)"
rom ( name "Armor Pico (v1.2).p8" size 19627 crc 922b2553 )
)
game (
name "Arrow Run"
description "Arrow Run"
rom ( name "Arrow Run.p8" size 30127 crc 19ee0653 )
)
game (
name "Arrows in Chains"
description "Arrows in Chains"
rom ( name "Arrows in Chains.p8" size 15991 crc 5e5795ed )
)
game (
name "ARRR Cade!"
description "ARRR Cade!"
rom ( name "ARRR Cade!.p8" size 53456 crc c5008739 )
)
game (
name "Artorius - Bullet Hell with a Sword!"
description "Artorius - Bullet Hell with a Sword!"
rom ( name "Artorius - Bullet Hell with a Sword!.p8" size 39717 crc 0d024dcb )
)
game (
name Ascend
description "Ascend"
rom ( name Ascend.p8 size 8268 crc e9b839e7 )
)
game (
name Ascent
description "Ascent"
rom ( name Ascent.p8 size 48385 crc 233a4631 )
)
game (
name "Ashleep (v1.4)"
description "Ashleep (v1.4)"
rom ( name "Ashleep (v1.4).p8" size 15666 crc d6d7a0a5 )
)
game (
name "Assigned Fighter At Birth (Update 8.15)"
description "Assigned Fighter At Birth (Update 8.15)"
rom ( name "Assigned Fighter At Birth (Update 8.15).p8" size 55436 crc c1c07532 )
)
game (
name Astero
description "Astero"
rom ( name Astero.p8 size 18762 crc c863e28f )
)
game (
name "Asteroh no, you better don't!"
description "Asteroh no, you better don't!"
rom ( name "Asteroh no, you better don't!.p8" size 15676 crc a353ba0e )
)
game (
name "Asteroid Mission (v1.0.1)"
description "Asteroid Mission (v1.0.1)"
rom ( name "Asteroid Mission (v1.0.1).p8" size 18517 crc 9a454b8c )
)
game (
name "Asteroid Shooter"
description "Asteroid Shooter"
rom ( name "Asteroid Shooter.p8" size 13552 crc c93ce34e )
)
game (
name Asteroids
description "Asteroids"
rom ( name Asteroids.p8 size 10648 crc a6872ff7 )
)
game (
name "Asteroids (liconaj)(v2.0)"
description "Asteroids (liconaj)(v2.0)"
rom ( name "Asteroids (liconaj)(v2.0).p8" size 16194 crc 282ef17c )
)
game (
name "Asteroids 2"
description "Asteroids 2"
rom ( name "Asteroids 2.p8" size 30535 crc b806a26a )
)
game (
name "Asteroids Demake 2022"
description "Asteroids Demake 2022"
rom ( name "Asteroids Demake 2022.p8" size 24424 crc 4b92063e )
)
game (
name Astro
description "Astro"
rom ( name Astro.p8 size 18826 crc bd797f10 )
)
game (
name "Astro - Galaxy Prix"
description "Astro - Galaxy Prix"
rom ( name "Astro - Galaxy Prix.p8" size 14418 crc 6c1141bb )
)
game (
name "Astro Clerk"
description "Astro Clerk"
rom ( name "Astro Clerk.p8" size 35801 crc 9689af99 )
)
game (
name "Astro Invader"
description "Astro Invader"
rom ( name "Astro Invader.p8" size 13590 crc 1a246642 )
)
game (
name Astropocalypse
description "Astropocalypse"
rom ( name Astropocalypse.p8 size 22203 crc ecfca212 )
)
game (
name Astrosmash
description "Astrosmash"
rom ( name Astrosmash.p8 size 11232 crc da8717c3 )
)
game (
name Astrotype
description "Astrotype"
rom ( name Astrotype.p8 size 15810 crc 180f4fb3 )
)
game (
name Ataxxmas
description "Ataxxmas"
rom ( name Ataxxmas.p8 size 38834 crc cf11e959 )
)
game (
name "Atelier Phoebe! (v1.17)"
description "Atelier Phoebe! (v1.17)"
rom ( name "Atelier Phoebe! (v1.17).p8" size 33669 crc 90a86b63 )
)
game (
name "Athos [Hack]"
description "Athos [Hack]"
rom ( name "Athos [Hack].p8" size 50620 crc 82351b58 )
)
game (
name AticEscape
description "AticEscape"
rom ( name AticEscape.p8 size 20876 crc df834c80 )
)
game (
name "Atlantis (Update 5)"
description "Atlantis (Update 5)"
rom ( name "Atlantis (Update 5).p8" size 9652 crc 57bdef98 )
)
game (
name "Atomic Punch Man"
description "Atomic Punch Man"
rom ( name "Atomic Punch Man.p8" size 24799 crc 1b3e537b )
)
game (
name Atomix
description "Atomix"
rom ( name Atomix.p8 size 21066 crc 50927095 )
)
game (
name "Attack of Buddha"
description "Attack of Buddha"
rom ( name "Attack of Buddha.p8" size 13697 crc 33fc0748 )
)
game (
name "Attack of the 5-Foot Fish"
description "Attack of the 5-Foot Fish"
rom ( name "Attack of the 5-Foot Fish.p8" size 23097 crc d2efb19d )
)
game (
name "Attract and Touch"
description "Attract and Touch"
rom ( name "Attract and Touch.p8" size 10617 crc d1a0f6da )
)
game (
name "Aurora Railway"
description "Aurora Railway"
rom ( name "Aurora Railway.p8" size 39676 crc 962fb668 )
)