-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAtari 2600 NoIntro.html
816 lines (816 loc) · 222 KB
/
Atari 2600 NoIntro.html
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
<div id="topbar">
<link rel="stylesheet" type="text/css" href="style.css" />
<input type="text" id="filterInput" placeholder="Filter..."><span id="pocet"></span>
<input type="radio" name="thumbtype" id="Boxarts" value="Boxarts" onclick="boxarts()"><label for="Boxarts">Boxarts</label>
<input type="radio" name="thumbtype" id="Snaps" value="Snaps" checked onclick="snaps()"><label for="Snaps">Snaps</label>
<input type="radio" name="thumbtype" id="Titles" value="Titles" onclick="titles()"><label for="Titles">Titles</label>
<input type="radio" name="thumbtype" id="Logos" value="Logos" onclick="logos()"><label for="Logos">Logos</label>
<input type="radio" name="size" id="80px" value="80px" onclick="change80()"><label for="80px">80px</label>
<input type="radio" name="size" id="120px" value="120px" onclick="change120()"><label for="120px">120px</label>
<input type="radio" name="size" id="160px" value="160px" onclick="change160()" checked><label for="160px">160px</label>
<input type="radio" name="size" id="240px" value="240px" onclick="change240()"><label for="240px">240px</label>
<input type="radio" name="size" id="320px" value="320px" onclick="change320()"><label for="320px">320px</label>
<br />
<input type="checkbox" id="showHideAlfa"><label for="showHideAlfa">Alpha</label>
<input type="checkbox" id="showHideBeta"><label for="showHideBeta">Beta</label>
<input type="checkbox" id="showHideDemo"><label for="showHideDemo">Demo</label>
<input type="checkbox" id="showHideAftermarket"><label for="showHideAftermarket">Aftermarket</label>
<input type="checkbox" id="showHideProto" checked><label for="showHideProto">Proto</label>
<input type="checkbox" id="showHideUnl"><label for="showHideUnl">Unlicensed</label>
<input type="checkbox" id="showHideProgram" checked><label for="showHideProgram">Program</label>
<input type="checkbox" id="showHideAlt"><label for="showHideAlt">Alternate</label>
<input type="checkbox" id="showHidePirate"><label for="showHidePirate">Pirated</label>
<input type="checkbox" id="showHideBrackets"><label for="showHideBrackets">[a] [b] [a2]</label>
<p></div><br><div id="figureList"><br>
<style> figure { background-image: url('https://raw.githubusercontent.com/fabricecaruso/es-theme-carbon/master/art/consoles/atari2600.png'); } </style>
<a href="../myrient/No-Intro/Atari - 2600/Abre-te, Sesamo! (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Abre-te, Sesamo! (Brazil) (En) (Unl).png"><figcaption>Abre-te, Sesamo! (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Acid Drop (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Acid Drop (Europe).png"><figcaption>Acid Drop (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Actionauts (USA) (Proto) (1984-06-22).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Actionauts (USA) (Proto) (1984-06-22).png"><figcaption>Actionauts (USA) (Proto) (1984-06-22)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Action Man - Action Force (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Action Man - Action Force (Europe).png"><figcaption>Action Man - Action Force (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Activision Decathlon, The (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Activision Decathlon, The (Europe).png"><figcaption>Activision Decathlon, The (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Activision Decathlon, The (France).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Activision Decathlon, The (France).png"><figcaption>Activision Decathlon, The (France)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Activision Decathlon, The (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Activision Decathlon, The (USA).png"><figcaption>Activision Decathlon, The (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Adventure (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Adventure (Europe).png"><figcaption>Adventure (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Adventures of TRON (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Adventures of TRON (USA).png"><figcaption>Adventures of TRON (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Adventure (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Adventure (USA).png"><figcaption>Adventure (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Airlock (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Airlock (Europe).png"><figcaption>Airlock (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Airlock (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Airlock (USA) (Proto).png"><figcaption>Airlock (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Airlock (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Airlock (USA).png"><figcaption>Airlock (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Air Raiders (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Air Raiders (Europe).png"><figcaption>Air Raiders (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Air Raiders (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Air Raiders (USA).png"><figcaption>Air Raiders (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Air Raid (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Air Raid (USA).png"><figcaption>Air Raid (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Air-Sea Battle (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Air-Sea Battle (Europe).png"><figcaption>Air-Sea Battle (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Air-Sea Battle ~ Target Fun (Japan, USA) (En) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Air-Sea Battle ~ Target Fun (Japan, USA) (En) (Atari Anthology).png"><figcaption>Air-Sea Battle ~ Target Fun (Japan, USA) (En) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Air-Sea Battle ~ Target Fun (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Air-Sea Battle ~ Target Fun (Japan, USA) (En).png"><figcaption>Air-Sea Battle ~ Target Fun (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Alien (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Alien (Brazil) (En) (Unl).png"><figcaption>Alien (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Alien's Return (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Alien's Return (Europe).png"><figcaption>Alien's Return (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Alien (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Alien (USA).png"><figcaption>Alien (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Alligator People (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Alligator People (USA) (Proto).png"><figcaption>Alligator People (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Alpha Beam (Europe) (Beta) (1983-06-03).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Alpha Beam (Europe) (Beta) (1983-06-03).png"><figcaption>Alpha Beam (Europe) (Beta) (1983-06-03)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Alpha Beam (Japan, USA) (En) (Beta) (1982-12-22).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Alpha Beam (Japan, USA) (En) (Beta) (1982-12-22).png"><figcaption>Alpha Beam (Japan, USA) (En) (Beta) (1982-12-22)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Alpha Beam with Ernie (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Alpha Beam with Ernie (Europe).png"><figcaption>Alpha Beam with Ernie (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Alpha Beam with Ernie (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Alpha Beam with Ernie (Japan, USA) (En).png"><figcaption>Alpha Beam with Ernie (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amidar (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amidar (Europe).png"><figcaption>Amidar (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amidar (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amidar (USA).png"><figcaption>Amidar (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (NTSC) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (NTSC) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (NTSC) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (PAL 50Hz) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (PAL 50Hz) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (PAL 50Hz) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (PAL 60Hz) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (PAL 60Hz) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (PAL 60Hz) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (Retron 77 Version) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (Retron 77 Version) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (Retron 77 Version) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (v0.1) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (v0.1) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (v0.1) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (v1.1) (NTSC) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (v1.1) (NTSC) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (v1.1) (NTSC) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (v1.1) (PAL) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (v1.1) (PAL) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (v1.1) (PAL) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (v1.2) (NTSC) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (v1.2) (NTSC) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (v1.2) (NTSC) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (v1.2) (PAL) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (v1.2) (PAL) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (v1.2) (PAL) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (v1.3) (NTSC) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (v1.3) (NTSC) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (v1.3) (NTSC) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Amoeba Jump (World) (v1.3) (PAL) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Amoeba Jump (World) (v1.3) (PAL) (Aftermarket) (Unl).png"><figcaption>Amoeba Jump (World) (v1.3) (PAL) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/AndroMan on the Moon (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/AndroMan on the Moon (USA) (Proto).png"><figcaption>AndroMan on the Moon (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Angry Video Game Nerd K.O. Boxing (World) (NTSC) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Angry Video Game Nerd K.O. Boxing (World) (NTSC) (Aftermarket) (Unl).png"><figcaption>Angry Video Game Nerd K.O. Boxing (World) (NTSC) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Angry Video Game Nerd K.O. Boxing (World) (PAL 60hz) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Angry Video Game Nerd K.O. Boxing (World) (PAL 60hz) (Aftermarket) (Unl).png"><figcaption>Angry Video Game Nerd K.O. Boxing (World) (PAL 60hz) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Anguna 2600 (World) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Anguna 2600 (World) (Aftermarket).png"><figcaption>Anguna 2600 (World) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Apples and Dolls (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Apples and Dolls (Brazil) (En) (Unl).png"><figcaption>Apples and Dolls (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Aquaventure (Brazil) (En) (Proto) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Aquaventure (Brazil) (En) (Proto) (Unl).png"><figcaption>Aquaventure (Brazil) (En) (Proto) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Aquaventure (USA) (Proto) (1983-08-12).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Aquaventure (USA) (Proto) (1983-08-12).png"><figcaption>Aquaventure (USA) (Proto) (1983-08-12)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Armor Ambush (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Armor Ambush (Europe).png"><figcaption>Armor Ambush (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Armor Ambush (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Armor Ambush (USA).png"><figcaption>Armor Ambush (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Artillery Duel (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Artillery Duel (Europe).png"><figcaption>Artillery Duel (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Artillery Duel (USA) (Alt).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Artillery Duel (USA) (Alt).png"><figcaption>Artillery Duel (USA) (Alt)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Artillery Duel (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Artillery Duel (USA).png"><figcaption>Artillery Duel (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Assault (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Assault (USA).png"><figcaption>Assault (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Assembloids (World) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Assembloids (World) (Aftermarket) (Unl).png"><figcaption>Assembloids (World) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Asteroids (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Asteroids (Europe).png"><figcaption>Asteroids (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Asteroids (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Asteroids (Japan, USA) (En).png"><figcaption>Asteroids (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Asteroids (USA) (Alternate).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Asteroids (USA) (Alternate).png"><figcaption>Asteroids (USA) (Alternate)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Asteroids (USA) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Asteroids (USA) (Atari Anthology).png"><figcaption>Asteroids (USA) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Astroblast (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Astroblast (Europe).png"><figcaption>Astroblast (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Astroblast (USA) (v1.1).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Astroblast (USA) (v1.1).png"><figcaption>Astroblast (USA) (v1.1)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Astroblast (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Astroblast (USA).png"><figcaption>Astroblast (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Astrowar (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Astrowar (Brazil) (En) (Unl).png"><figcaption>Astrowar (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Atari Video Cube (USA, Europe) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Atari Video Cube (USA, Europe) (Atari Anthology).png"><figcaption>Atari Video Cube (USA, Europe) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Atari Video Cube (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Atari Video Cube (USA).png"><figcaption>Atari Video Cube (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Atlantis (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Atlantis (Europe).png"><figcaption>Atlantis (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Atlantis II (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Atlantis II (USA).png"><figcaption>Atlantis II (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Atlantis (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Atlantis (USA).png"><figcaption>Atlantis (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Atom Smasher (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Atom Smasher (USA) (Proto).png"><figcaption>Atom Smasher (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Backgammon (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Backgammon (Europe).png"><figcaption>Backgammon (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Backgammon (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Backgammon (USA).png"><figcaption>Backgammon (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bachelorette Party (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bachelorette Party (USA).png"><figcaption>Bachelorette Party (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bachelor Party (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bachelor Party (USA).png"><figcaption>Bachelor Party (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bank Heist (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bank Heist (Europe).png"><figcaption>Bank Heist (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bank Heist (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bank Heist (USA).png"><figcaption>Bank Heist (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Barnstorming (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Barnstorming (Brazil) (En) (Unl).png"><figcaption>Barnstorming (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Barnstorming (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Barnstorming (Europe).png"><figcaption>Barnstorming (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Barnstorming (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Barnstorming (USA).png"><figcaption>Barnstorming (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Base Attack (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Base Attack (Europe).png"><figcaption>Base Attack (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Baseball (USA) (Activision Anthology - Remix Edition).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Baseball (USA) (Activision Anthology - Remix Edition).png"><figcaption>Baseball (USA) (Activision Anthology - Remix Edition)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Basic Math (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Basic Math (Europe).png"><figcaption>Basic Math (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Basic Math (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Basic Math (USA).png"><figcaption>Basic Math (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/BASIC Programming (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/BASIC Programming (Europe).png"><figcaption>BASIC Programming (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/BASIC Programming (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/BASIC Programming (USA).png"><figcaption>BASIC Programming (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Basketball (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Basketball (Europe).png"><figcaption>Basketball (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Basketball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Basketball (USA).png"><figcaption>Basketball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Battlezone (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Battlezone (Europe).png"><figcaption>Battlezone (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Battlezone (Japan, USA) (En) (Beta) (1983-05-02).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Battlezone (Japan, USA) (En) (Beta) (1983-05-02).png"><figcaption>Battlezone (Japan, USA) (En) (Beta) (1983-05-02)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Battlezone (Japan, USA) (En) (Beta) (1983-05-12).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Battlezone (Japan, USA) (En) (Beta) (1983-05-12).png"><figcaption>Battlezone (Japan, USA) (En) (Beta) (1983-05-12)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Battlezone (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Battlezone (Japan, USA) (En).png"><figcaption>Battlezone (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Beamrider (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Beamrider (Europe).png"><figcaption>Beamrider (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Beamrider (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Beamrider (USA).png"><figcaption>Beamrider (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Beany Bopper (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Beany Bopper (Brazil) (En) (Unl).png"><figcaption>Beany Bopper (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Beany Bopper (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Beany Bopper (USA).png"><figcaption>Beany Bopper (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Beat'Em & Eat'Em (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Beat'Em & Eat'Em (Brazil) (En) (Unl).png"><figcaption>Beat'Em & Eat'Em (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Beat'Em & Eat'Em (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Beat'Em & Eat'Em (Europe).png"><figcaption>Beat'Em & Eat'Em (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Beat'Em & Eat'Em (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Beat'Em & Eat'Em (USA).png"><figcaption>Beat'Em & Eat'Em (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Berenstain Bears (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Berenstain Bears (USA).png"><figcaption>Berenstain Bears (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bermuda Triangle (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bermuda Triangle (Europe).png"><figcaption>Bermuda Triangle (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bermuda Triangle (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bermuda Triangle (USA).png"><figcaption>Bermuda Triangle (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Berzerk (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Berzerk (Brazil) (En) (Unl).png"><figcaption>Berzerk (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Berzerk (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Berzerk (Europe).png"><figcaption>Berzerk (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Berzerk (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Berzerk (Japan, USA) (En).png"><figcaption>Berzerk (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Berzerk (World) (Enhanced Edition).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Berzerk (World) (Enhanced Edition).png"><figcaption>Berzerk (World) (Enhanced Edition)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Big Bird's Egg Catch (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Big Bird's Egg Catch (Europe).png"><figcaption>Big Bird's Egg Catch (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1982-12-08).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1982-12-08).png"><figcaption>Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1982-12-08)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1983-05-02).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1983-05-02).png"><figcaption>Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1983-05-02)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1983-05-17).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1983-05-17).png"><figcaption>Big Bird's Egg Catch (Japan, USA) (En) (Beta) (1983-05-17)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Big Bird's Egg Catch (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Big Bird's Egg Catch (Japan, USA) (En).png"><figcaption>Big Bird's Egg Catch (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bionic Breakthrough (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bionic Breakthrough (USA) (Proto).png"><figcaption>Bionic Breakthrough (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Birthday Mania (USA) (Robert A. Tokar).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Birthday Mania (USA) (Robert A. Tokar).png"><figcaption>Birthday Mania (USA) (Robert A. Tokar)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Black Jack (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Black Jack (Europe).png"><figcaption>Black Jack (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Black Jack (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Black Jack (USA).png"><figcaption>Black Jack (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bloody Human Freeway (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bloody Human Freeway (USA) (Proto).png"><figcaption>Bloody Human Freeway (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Blueprint (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Blueprint (Europe).png"><figcaption>Blueprint (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Blueprint (USA) (Beta).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Blueprint (USA) (Beta).png"><figcaption>Blueprint (USA) (Beta)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Blueprint (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Blueprint (USA).png"><figcaption>Blueprint (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/BMX Air Master (Australia).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/BMX Air Master (Australia).png"><figcaption>BMX Air Master (Australia)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/BMX Air Master (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/BMX Air Master (Europe).png"><figcaption>BMX Air Master (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/BMX Air Master (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/BMX Air Master (USA).png"><figcaption>BMX Air Master (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bobby Is Going Home (Brazil) (En) (NTSC) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bobby Is Going Home (Brazil) (En) (NTSC) (Unl).png"><figcaption>Bobby Is Going Home (Brazil) (En) (NTSC) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bobby Is Going Home (Brazil) (En) (PAL) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bobby Is Going Home (Brazil) (En) (PAL) (Unl).png"><figcaption>Bobby Is Going Home (Brazil) (En) (PAL) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bobby Is Going Home (Europe) (Beta).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bobby Is Going Home (Europe) (Beta).png"><figcaption>Bobby Is Going Home (Europe) (Beta)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bobby Is Going Home (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bobby Is Going Home (Europe).png"><figcaption>Bobby Is Going Home (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bobby Is Going Home (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bobby Is Going Home (USA).png"><figcaption>Bobby Is Going Home (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Boggle (USA) (Proto) (1978-08-07).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Boggle (USA) (Proto) (1978-08-07).png"><figcaption>Boggle (USA) (Proto) (1978-08-07)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Boing! (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Boing! (Europe).png"><figcaption>Boing! (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Boing! (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Boing! (USA).png"><figcaption>Boing! (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bouncin' Baby Bunnies (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bouncin' Baby Bunnies (USA) (Proto).png"><figcaption>Bouncin' Baby Bunnies (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bowling (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bowling (Europe).png"><figcaption>Bowling (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bowling (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bowling (USA).png"><figcaption>Bowling (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Boxen (Germany) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Boxen (Germany) (En).png"><figcaption>Boxen (Germany) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Boxing (Brazil) (En) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Boxing (Brazil) (En) (Unl).png"><figcaption>Boxing (Brazil) (En) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Boxing (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Boxing (Europe).png"><figcaption>Boxing (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Boxing (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Boxing (USA).png"><figcaption>Boxing (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Brain Games (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Brain Games (Europe).png"><figcaption>Brain Games (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Brain Games (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Brain Games (USA).png"><figcaption>Brain Games (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Breakout ~ Breakaway IV (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Breakout ~ Breakaway IV (Japan, USA) (En).png"><figcaption>Breakout ~ Breakaway IV (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Breakout (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Breakout (Europe).png"><figcaption>Breakout (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bridge (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bridge (Europe).png"><figcaption>Bridge (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bridge (USA) (v1.1).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bridge (USA) (v1.1).png"><figcaption>Bridge (USA) (v1.1)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bridge (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bridge (USA).png"><figcaption>Bridge (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Buck Rogers - Planet of Zoom (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Buck Rogers - Planet of Zoom (Europe).png"><figcaption>Buck Rogers - Planet of Zoom (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Buck Rogers - Planet of Zoom (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Buck Rogers - Planet of Zoom (USA).png"><figcaption>Buck Rogers - Planet of Zoom (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bugs Bunny (USA) (Proto 1).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bugs Bunny (USA) (Proto 1).png"><figcaption>Bugs Bunny (USA) (Proto 1)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bugs Bunny (USA) (Proto 2).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bugs Bunny (USA) (Proto 2).png"><figcaption>Bugs Bunny (USA) (Proto 2)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bugs (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bugs (Europe).png"><figcaption>Bugs (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bugs (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bugs (USA).png"><figcaption>Bugs (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bumper Bash (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bumper Bash (Europe).png"><figcaption>Bumper Bash (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bumper Bash (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bumper Bash (USA).png"><figcaption>Bumper Bash (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bump 'n' Jump (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bump 'n' Jump (Europe).png"><figcaption>Bump 'n' Jump (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Bump 'n' Jump (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Bump 'n' Jump (USA).png"><figcaption>Bump 'n' Jump (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Burgertime (USA) (PROPER 12K).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Burgertime (USA) (PROPER 12K).png"><figcaption>Burgertime (USA) (PROPER 12K)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/BurgerTime (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/BurgerTime (USA).png"><figcaption>BurgerTime (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Burning Desire (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Burning Desire (Europe).png"><figcaption>Burning Desire (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Burning Desire (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Burning Desire (USA).png"><figcaption>Burning Desire (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cabbage Patch Kids - Adventures in the Park (USA) (Proto) (1984-09-13).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cabbage Patch Kids - Adventures in the Park (USA) (Proto) (1984-09-13).png"><figcaption>Cabbage Patch Kids - Adventures in the Park (USA) (Proto) (1984-09-13)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cakewalk (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cakewalk (Europe).png"><figcaption>Cakewalk (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cakewalk (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cakewalk (USA).png"><figcaption>Cakewalk (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/California Games (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/California Games (Europe).png"><figcaption>California Games (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/California Games (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/California Games (USA).png"><figcaption>California Games (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Canyon Bomber (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Canyon Bomber (USA).png"><figcaption>Canyon Bomber (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Care Bears (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Care Bears (USA) (Proto).png"><figcaption>Care Bears (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Carnival (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Carnival (Europe).png"><figcaption>Carnival (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Carnival (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Carnival (USA).png"><figcaption>Carnival (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Casino (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Casino (Europe).png"><figcaption>Casino (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Casino ~ Poker Plus (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Casino ~ Poker Plus (USA).png"><figcaption>Casino ~ Poker Plus (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cathouse Blues (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cathouse Blues (USA).png"><figcaption>Cathouse Blues (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cat Trax (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cat Trax (USA).png"><figcaption>Cat Trax (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Centipede (Europe) (Beta).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Centipede (Europe) (Beta).png"><figcaption>Centipede (Europe) (Beta)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Centipede (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Centipede (Europe).png"><figcaption>Centipede (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Centipede (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Centipede (Japan, USA) (En).png"><figcaption>Centipede (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Circus Atari (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Circus Atari (Europe).png"><figcaption>Circus Atari (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Circus Atari (Japan, USA) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Circus Atari (Japan, USA) (En).png"><figcaption>Circus Atari (Japan, USA) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Coco Nuts (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Coco Nuts (USA).png"><figcaption>Coco Nuts (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Codebreaker (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Codebreaker (Europe).png"><figcaption>Codebreaker (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Codebreaker (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Codebreaker (USA).png"><figcaption>Codebreaker (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Col 'N' (Europe) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Col 'N' (Europe) (Unl).png"><figcaption>Col 'N' (Europe) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Color Bar Generator (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Color Bar Generator (USA).png"><figcaption>Color Bar Generator (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Colors (Europe) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Colors (Europe) (Proto).png"><figcaption>Colors (Europe) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Colours (USA, Europe) (Demo) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Colours (USA, Europe) (Demo) (Atari Anthology).png"><figcaption>Colours (USA, Europe) (Demo) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Combat (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Combat (Europe).png"><figcaption>Combat (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Combat ~ Tank-Plus (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Combat ~ Tank-Plus (USA).png"><figcaption>Combat ~ Tank-Plus (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Combat Two (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Combat Two (USA) (Proto).png"><figcaption>Combat Two (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Combat (USA, Europe) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Combat (USA, Europe) (Atari Anthology).png"><figcaption>Combat (USA, Europe) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Commando (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Commando (Europe).png"><figcaption>Commando (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Commando Raid (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Commando Raid (Europe).png"><figcaption>Commando Raid (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Commando Raid (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Commando Raid (USA).png"><figcaption>Commando Raid (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Commando (USA) (Alt).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Commando (USA) (Alt).png"><figcaption>Commando (USA) (Alt)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Commando (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Commando (USA).png"><figcaption>Commando (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Communist Mutants from Space (Europe) (Beta).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Communist Mutants from Space (Europe) (Beta).png"><figcaption>Communist Mutants from Space (Europe) (Beta)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Communist Mutants from Space (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Communist Mutants from Space (Europe).png"><figcaption>Communist Mutants from Space (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Communist Mutants from Space (USA) (Beta).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Communist Mutants from Space (USA) (Beta).png"><figcaption>Communist Mutants from Space (USA) (Beta)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Communist Mutants from Space (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Communist Mutants from Space (USA).png"><figcaption>Communist Mutants from Space (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Computer Chess (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Computer Chess (USA) (Proto).png"><figcaption>Computer Chess (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Condor Attack (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Condor Attack (USA).png"><figcaption>Condor Attack (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Confrontation (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Confrontation (USA) (Proto).png"><figcaption>Confrontation (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Congo Bongo (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Congo Bongo (USA).png"><figcaption>Congo Bongo (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cookie Monster Munch (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cookie Monster Munch (USA).png"><figcaption>Cookie Monster Munch (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cosmic Ark (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cosmic Ark (USA).png"><figcaption>Cosmic Ark (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cosmic Commuter (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cosmic Commuter (USA).png"><figcaption>Cosmic Commuter (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cosmic Creeps (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cosmic Creeps (USA).png"><figcaption>Cosmic Creeps (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cosmic Swarm (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cosmic Swarm (USA).png"><figcaption>Cosmic Swarm (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Crack'ed (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Crack'ed (USA) (Proto).png"><figcaption>Crack'ed (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Crackpots (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Crackpots (USA).png"><figcaption>Crackpots (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Crash Dive (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Crash Dive (USA).png"><figcaption>Crash Dive (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Crazy Climber (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Crazy Climber (USA).png"><figcaption>Crazy Climber (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Crossbow (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Crossbow (USA).png"><figcaption>Crossbow (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cross Force (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cross Force (USA).png"><figcaption>Cross Force (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Crypts of Chaos (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Crypts of Chaos (USA).png"><figcaption>Crypts of Chaos (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Crystal Castles (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Crystal Castles (Europe).png"><figcaption>Crystal Castles (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Crystal Castles (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Crystal Castles (USA).png"><figcaption>Crystal Castles (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Cubicolor (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Cubicolor (USA) (Proto).png"><figcaption>Cubicolor (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Custer's Revenge (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Custer's Revenge (USA).png"><figcaption>Custer's Revenge (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dancing Plate (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dancing Plate (USA).png"><figcaption>Dancing Plate (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dan Kitchen's Tomcat - The F-14 Fighter Simulator (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dan Kitchen's Tomcat - The F-14 Fighter Simulator (Europe).png"><figcaption>Dan Kitchen's Tomcat - The F-14 Fighter Simulator (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dan Kitchen's Tomcat - The F-14 Fighter Simulator (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dan Kitchen's Tomcat - The F-14 Fighter Simulator (USA).png"><figcaption>Dan Kitchen's Tomcat - The F-14 Fighter Simulator (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dark Cavern (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dark Cavern (USA).png"><figcaption>Dark Cavern (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dark Chambers (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dark Chambers (USA).png"><figcaption>Dark Chambers (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Deadly Duck (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Deadly Duck (USA).png"><figcaption>Deadly Duck (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Death Trap (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Death Trap (USA).png"><figcaption>Death Trap (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Defender (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Defender (Europe).png"><figcaption>Defender (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Defender II (USA) (Alternate).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Defender II (USA) (Alternate).png"><figcaption>Defender II (USA) (Alternate)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Defender (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Defender (USA).png"><figcaption>Defender (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Demolition Herby (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Demolition Herby (USA).png"><figcaption>Demolition Herby (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Demon Attack (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Demon Attack (Europe).png"><figcaption>Demon Attack (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Demon Attack (USA) (Rev 1).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Demon Attack (USA) (Rev 1).png"><figcaption>Demon Attack (USA) (Rev 1)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Demons to Diamonds (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Demons to Diamonds (USA).png"><figcaption>Demons to Diamonds (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Depth Charge (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Depth Charge (USA) (Proto).png"><figcaption>Depth Charge (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Desert Falcon (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Desert Falcon (USA).png"><figcaption>Desert Falcon (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dice Puzzle (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dice Puzzle (Europe).png"><figcaption>Dice Puzzle (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dice Puzzle (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dice Puzzle (USA).png"><figcaption>Dice Puzzle (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dig Dug (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dig Dug (USA).png"><figcaption>Dig Dug (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dishaster (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dishaster (USA).png"><figcaption>Dishaster (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dodge 'Em ~ Dodger Cars (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dodge 'Em ~ Dodger Cars (USA).png"><figcaption>Dodge 'Em ~ Dodger Cars (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dodge 'Em (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dodge 'Em (Europe).png"><figcaption>Dodge 'Em (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dolphin (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dolphin (USA).png"><figcaption>Dolphin (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Donald Duck's Speedboat (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Donald Duck's Speedboat (USA) (Proto).png"><figcaption>Donald Duck's Speedboat (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Donkey Kong Junior (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Donkey Kong Junior (USA).png"><figcaption>Donkey Kong Junior (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Donkey Kong (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Donkey Kong (USA).png"><figcaption>Donkey Kong (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Double Dragon (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Double Dragon (USA).png"><figcaption>Double Dragon (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Double Dunk (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Double Dunk (Europe).png"><figcaption>Double Dunk (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Double Dunk (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Double Dunk (USA).png"><figcaption>Double Dunk (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dragon Defender (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dragon Defender (Europe).png"><figcaption>Dragon Defender (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dragonfire (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dragonfire (USA).png"><figcaption>Dragonfire (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dragonstomper (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dragonstomper (USA).png"><figcaption>Dragonstomper (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dragster (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dragster (USA).png"><figcaption>Dragster (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dschungel Boy (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dschungel Boy (Europe).png"><figcaption>Dschungel Boy (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dukes of Hazzard (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dukes of Hazzard (USA) (Proto).png"><figcaption>Dukes of Hazzard (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dumbo's Flying Circus (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dumbo's Flying Circus (USA) (Proto).png"><figcaption>Dumbo's Flying Circus (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Dune (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Dune (USA) (Proto).png"><figcaption>Dune (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Earth Dies Screaming, The (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Earth Dies Screaming, The (USA).png"><figcaption>Earth Dies Screaming, The (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Eggomania (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Eggomania (USA).png"><figcaption>Eggomania (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Elevator Action (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Elevator Action (USA) (Proto).png"><figcaption>Elevator Action (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Elf Adventure (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Elf Adventure (USA) (Proto).png"><figcaption>Elf Adventure (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Eli's Ladder (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Eli's Ladder (USA).png"><figcaption>Eli's Ladder (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Elk Attack (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Elk Attack (USA) (Proto).png"><figcaption>Elk Attack (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Encounter at L-5 (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Encounter at L-5 (USA).png"><figcaption>Encounter at L-5 (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Enduro (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Enduro (USA).png"><figcaption>Enduro (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Entity, The (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Entity, The (USA) (Proto).png"><figcaption>Entity, The (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Entombed (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Entombed (USA).png"><figcaption>Entombed (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Escape from the Mindmaster (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Escape from the Mindmaster (USA).png"><figcaption>Escape from the Mindmaster (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Espial (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Espial (USA).png"><figcaption>Espial (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/E.T. The Extra-Terrestrial (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/E.T. The Extra-Terrestrial (Europe).png"><figcaption>E.T. The Extra-Terrestrial (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/E.T. - The Extra-Terrestrial (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/E.T. - The Extra-Terrestrial (USA).png"><figcaption>E.T. - The Extra-Terrestrial (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Exocet (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Exocet (Europe).png"><figcaption>Exocet (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Extra Terrestrials (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Extra Terrestrials (USA).png"><figcaption>Extra Terrestrials (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fantastic Voyage (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fantastic Voyage (USA).png"><figcaption>Fantastic Voyage (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Farmyard Fun (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Farmyard Fun (USA).png"><figcaption>Farmyard Fun (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fast Eddie (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fast Eddie (USA).png"><figcaption>Fast Eddie (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fast Food (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fast Food (USA).png"><figcaption>Fast Food (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fatal Run (Europe) (Alternate).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fatal Run (Europe) (Alternate).png"><figcaption>Fatal Run (Europe) (Alternate)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fatal Run (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fatal Run (Europe).png"><figcaption>Fatal Run (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fatal Run (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fatal Run (USA).png"><figcaption>Fatal Run (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fathom (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fathom (USA).png"><figcaption>Fathom (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Final Approach (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Final Approach (USA).png"><figcaption>Final Approach (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fireball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fireball (USA).png"><figcaption>Fireball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fire Fighter (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fire Fighter (USA).png"><figcaption>Fire Fighter (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fire Fly (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fire Fly (USA).png"><figcaption>Fire Fly (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fire Spinner (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fire Spinner (USA).png"><figcaption>Fire Spinner (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Fishing Derby (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Fishing Derby (USA).png"><figcaption>Fishing Derby (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Flag Capture ~ Capture (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Flag Capture ~ Capture (USA).png"><figcaption>Flag Capture ~ Capture (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Flash Gordon (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Flash Gordon (USA).png"><figcaption>Flash Gordon (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/FM Sound Tool (Unknown) (Proto) [b].zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/FM Sound Tool (Unknown) (Proto) [b].png"><figcaption>FM Sound Tool (Unknown) (Proto) [b]</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Football (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Football (USA).png"><figcaption>Football (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Forest (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Forest (Europe).png"><figcaption>Forest (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Frankenstein's Monster (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Frankenstein's Monster (USA).png"><figcaption>Frankenstein's Monster (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Freeway (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Freeway (USA).png"><figcaption>Freeway (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Frisco (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Frisco (USA).png"><figcaption>Frisco (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Frog Demo (Europe) (Demo).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Frog Demo (Europe) (Demo).png"><figcaption>Frog Demo (Europe) (Demo)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Frogger II - Threeedeep! (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Frogger II - Threeedeep! (USA).png"><figcaption>Frogger II - Threeedeep! (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Frogger (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Frogger (USA).png"><figcaption>Frogger (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Frog Pond (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Frog Pond (USA) (Proto).png"><figcaption>Frog Pond (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Frogs and Flies (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Frogs and Flies (USA).png"><figcaption>Frogs and Flies (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Front Line (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Front Line (USA).png"><figcaption>Front Line (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Frostbite (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Frostbite (USA).png"><figcaption>Frostbite (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Funky Fish (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Funky Fish (USA) (Proto).png"><figcaption>Funky Fish (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Galaxian (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Galaxian (USA).png"><figcaption>Galaxian (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gamma-Attack (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gamma-Attack (USA).png"><figcaption>Gamma-Attack (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gangster Alley (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gangster Alley (USA).png"><figcaption>Gangster Alley (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Garfield (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Garfield (USA) (Proto).png"><figcaption>Garfield (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gas Hog (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gas Hog (USA).png"><figcaption>Gas Hog (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gauntlet (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gauntlet (USA).png"><figcaption>Gauntlet (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ghostbusters II (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ghostbusters II (Europe).png"><figcaption>Ghostbusters II (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ghostbusters (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ghostbusters (USA).png"><figcaption>Ghostbusters (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ghost Manor (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ghost Manor (USA).png"><figcaption>Ghost Manor (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gigolo (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gigolo (USA).png"><figcaption>Gigolo (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/G.I. Joe - Cobra Strike (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/G.I. Joe - Cobra Strike (USA).png"><figcaption>G.I. Joe - Cobra Strike (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Glacier Patrol (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Glacier Patrol (USA).png"><figcaption>Glacier Patrol (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Glib - Video Word Game (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Glib - Video Word Game (USA).png"><figcaption>Glib - Video Word Game (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Go Fish! (World) (NTSC) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Go Fish! (World) (NTSC) (Aftermarket).png"><figcaption>Go Fish! (World) (NTSC) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Go Fish! (World) (PAL) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Go Fish! (World) (PAL) (Aftermarket).png"><figcaption>Go Fish! (World) (PAL) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Going-Up (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Going-Up (USA) (Proto).png"><figcaption>Going-Up (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Golf (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Golf (USA).png"><figcaption>Golf (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Good Luck, Charlie Brown (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Good Luck, Charlie Brown (USA) (Proto).png"><figcaption>Good Luck, Charlie Brown (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gopher (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gopher (USA).png"><figcaption>Gopher (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gorf (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gorf (USA).png"><figcaption>Gorf (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Grand Prix (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Grand Prix (USA).png"><figcaption>Grand Prix (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gravitar (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gravitar (USA).png"><figcaption>Gravitar (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Great Escape (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Great Escape (Europe).png"><figcaption>Great Escape (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Great Escape (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Great Escape (USA).png"><figcaption>Great Escape (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gremlins (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gremlins (USA).png"><figcaption>Gremlins (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Grover's Music Maker (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Grover's Music Maker (USA) (Proto).png"><figcaption>Grover's Music Maker (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Guardian (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Guardian (USA).png"><figcaption>Guardian (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Gyruss (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Gyruss (USA).png"><figcaption>Gyruss (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Halloween (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Halloween (USA).png"><figcaption>Halloween (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Halo 2600 (Europe) (PAL) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Halo 2600 (Europe) (PAL) (Aftermarket).png"><figcaption>Halo 2600 (Europe) (PAL) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Halo 2600 (World) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Halo 2600 (World) (Aftermarket) (Unl).png"><figcaption>Halo 2600 (World) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Hangman ~ Spelling (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Hangman ~ Spelling (USA).png"><figcaption>Hangman ~ Spelling (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Hard-Head (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Hard-Head (USA) (Proto).png"><figcaption>Hard-Head (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Harem (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Harem (USA) (Proto).png"><figcaption>Harem (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Haunted House (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Haunted House (USA).png"><figcaption>Haunted House (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Hell Driver (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Hell Driver (Europe).png"><figcaption>Hell Driver (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/H.E.R.O. (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/H.E.R.O. (Europe).png"><figcaption>H.E.R.O. (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/H.E.R.O. (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/H.E.R.O. (USA).png"><figcaption>H.E.R.O. (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Hole Hunter (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Hole Hunter (USA).png"><figcaption>Hole Hunter (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Holey Moley (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Holey Moley (USA) (Proto).png"><figcaption>Holey Moley (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Home Run ~ Baseball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Home Run ~ Baseball (USA).png"><figcaption>Home Run ~ Baseball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Human Cannonball ~ Cannon Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Human Cannonball ~ Cannon Man (USA).png"><figcaption>Human Cannonball ~ Cannon Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Hunt & Score ~ Memory Match (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Hunt & Score ~ Memory Match (USA).png"><figcaption>Hunt & Score ~ Memory Match (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Challenge (Canada).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Challenge (Canada).png"><figcaption>Challenge (Canada)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Challenge of.... NEXAR, The (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Challenge of.... NEXAR, The (Europe).png"><figcaption>Challenge of.... NEXAR, The (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Challenge of.... NEXAR, The (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Challenge of.... NEXAR, The (USA).png"><figcaption>Challenge of.... NEXAR, The (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Championship Soccer (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Championship Soccer (Europe).png"><figcaption>Championship Soccer (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Championship Soccer ~ Soccer (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Championship Soccer ~ Soccer (USA).png"><figcaption>Championship Soccer ~ Soccer (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Chase the Chuck Wagon (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Chase the Chuck Wagon (USA).png"><figcaption>Chase the Chuck Wagon (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Checkers (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Checkers (USA).png"><figcaption>Checkers (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/China Syndrome (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/China Syndrome (Europe).png"><figcaption>China Syndrome (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/China Syndrome (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/China Syndrome (USA).png"><figcaption>China Syndrome (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Chopper Command (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Chopper Command (Europe).png"><figcaption>Chopper Command (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Chopper Command (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Chopper Command (USA).png"><figcaption>Chopper Command (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Chuck Norris Superkicks (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Chuck Norris Superkicks (USA).png"><figcaption>Chuck Norris Superkicks (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ice Hockey (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ice Hockey (USA).png"><figcaption>Ice Hockey (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ikari Warriors (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ikari Warriors (USA).png"><figcaption>Ikari Warriors (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Immies & Aggies (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Immies & Aggies (USA) (Proto).png"><figcaption>Immies & Aggies (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Indy 500 (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Indy 500 (Europe).png"><figcaption>Indy 500 (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Indy 500 ~ Race (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Indy 500 ~ Race (USA).png"><figcaption>Indy 500 ~ Race (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Infiltrate (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Infiltrate (USA).png"><figcaption>Infiltrate (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/International Soccer (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/International Soccer (USA).png"><figcaption>International Soccer (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/INV+ (World) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/INV+ (World) (Aftermarket).png"><figcaption>INV+ (World) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/INV+ (World) (2004-04-08) (Beta) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/INV+ (World) (2004-04-08) (Beta) (Aftermarket).png"><figcaption>INV+ (World) (2004-04-08) (Beta) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/INV+ (World) (2004-04-29) (Beta) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/INV+ (World) (2004-04-29) (Beta) (Aftermarket).png"><figcaption>INV+ (World) (2004-04-29) (Beta) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/I.Q. Memory Teaser (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/I.Q. Memory Teaser (Europe).png"><figcaption>I.Q. Memory Teaser (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/I.Q. 180 (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/I.Q. 180 (USA).png"><figcaption>I.Q. 180 (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/IQ 180 (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/IQ 180 (USA).png"><figcaption>IQ 180 (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/I Want My Mommy (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/I Want My Mommy (USA).png"><figcaption>I Want My Mommy (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ixion (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ixion (USA) (Proto).png"><figcaption>Ixion (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/James Bond 007 (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/James Bond 007 (USA).png"><figcaption>James Bond 007 (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Jawbreaker (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Jawbreaker (USA).png"><figcaption>Jawbreaker (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Journey Escape (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Journey Escape (USA).png"><figcaption>Journey Escape (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Joust (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Joust (USA).png"><figcaption>Joust (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Jr. Pac-Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Jr. Pac-Man (USA).png"><figcaption>Jr. Pac-Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Jungle Fever (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Jungle Fever (USA).png"><figcaption>Jungle Fever (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Jungle Hunt (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Jungle Hunt (USA).png"><figcaption>Jungle Hunt (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Kabobber (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Kabobber (USA) (Proto).png"><figcaption>Kabobber (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Kaboom! (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Kaboom! (USA).png"><figcaption>Kaboom! (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Kamikaze Saucers (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Kamikaze Saucers (USA) (Proto).png"><figcaption>Kamikaze Saucers (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Kangaroo (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Kangaroo (USA).png"><figcaption>Kangaroo (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Karate (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Karate (USA).png"><figcaption>Karate (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Keystone Kapers (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Keystone Kapers (USA).png"><figcaption>Keystone Kapers (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Kid Vid Voice Module (USA) (Audio Tapes).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Kid Vid Voice Module (USA) (Audio Tapes).png"><figcaption>Kid Vid Voice Module (USA) (Audio Tapes)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Killer Satellites (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Killer Satellites (USA).png"><figcaption>Killer Satellites (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/King Kong (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/King Kong (USA).png"><figcaption>King Kong (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Klax (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Klax (Europe).png"><figcaption>Klax (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Klax (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Klax (USA).png"><figcaption>Klax (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Knight on the Town (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Knight on the Town (USA).png"><figcaption>Knight on the Town (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Kool-Aid Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Kool-Aid Man (USA).png"><figcaption>Kool-Aid Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Krull (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Krull (USA).png"><figcaption>Krull (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Kung-Fu Master (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Kung-Fu Master (USA).png"><figcaption>Kung-Fu Master (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Kyphus (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Kyphus (USA) (Proto).png"><figcaption>Kyphus (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Laaser Voley (Europe) (Pirate).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Laaser Voley (Europe) (Pirate).png"><figcaption>Laaser Voley (Europe) (Pirate)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Lady in Wading (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Lady in Wading (USA).png"><figcaption>Lady in Wading (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Laser Blast (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Laser Blast (USA).png"><figcaption>Laser Blast (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Lasercade (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Lasercade (USA) (Proto).png"><figcaption>Lasercade (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Laser Gates (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Laser Gates (USA).png"><figcaption>Laser Gates (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Lilly Adventure (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Lilly Adventure (Europe).png"><figcaption>Lilly Adventure (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Lilly Adventure (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Lilly Adventure (USA).png"><figcaption>Lilly Adventure (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Lock 'n' Chase (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Lock 'n' Chase (USA).png"><figcaption>Lock 'n' Chase (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Lochjaw (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Lochjaw (USA).png"><figcaption>Lochjaw (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/London Blitz (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/London Blitz (USA).png"><figcaption>London Blitz (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Looping (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Looping (USA) (Proto).png"><figcaption>Looping (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Lord of the Rings, The - Journey to Rivendell (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Lord of the Rings, The - Journey to Rivendell (USA) (Proto).png"><figcaption>Lord of the Rings, The - Journey to Rivendell (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Lost Luggage (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Lost Luggage (USA).png"><figcaption>Lost Luggage (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/M.A.D. (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/M.A.D. (USA).png"><figcaption>M.A.D. (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/MagiCard (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/MagiCard (USA).png"><figcaption>MagiCard (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Malagai (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Malagai (USA).png"><figcaption>Malagai (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mangia' (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mangia' (USA).png"><figcaption>Mangia' (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Marauder (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Marauder (USA).png"><figcaption>Marauder (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Marine Wars (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Marine Wars (USA).png"><figcaption>Marine Wars (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mario Bros. (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mario Bros. (USA).png"><figcaption>Mario Bros. (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/M.A.S.H (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/M.A.S.H (USA).png"><figcaption>M.A.S.H (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Master Builder (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Master Builder (USA).png"><figcaption>Master Builder (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Masters of the Universe - The Power of He-Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Masters of the Universe - The Power of He-Man (USA).png"><figcaption>Masters of the Universe - The Power of He-Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Math Gran Prix (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Math Gran Prix (USA).png"><figcaption>Math Gran Prix (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Maze Craze - A Game of Cops 'n Robbers ~ Maze Mania - A Game of Cops 'n Robbers (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Maze Craze - A Game of Cops 'n Robbers ~ Maze Mania - A Game of Cops 'n Robbers (USA).png"><figcaption>Maze Craze - A Game of Cops 'n Robbers ~ Maze Mania - A Game of Cops 'n Robbers (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mazy Match (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mazy Match (USA) (Proto).png"><figcaption>Mazy Match (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/McDonald's - Golden Arches Adventure (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/McDonald's - Golden Arches Adventure (USA) (Proto).png"><figcaption>McDonald's - Golden Arches Adventure (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/MegaBoy (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/MegaBoy (USA).png"><figcaption>MegaBoy (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mega Force (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mega Force (USA).png"><figcaption>Mega Force (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/MegaMania - A Space Nightmare (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/MegaMania - A Space Nightmare (USA).png"><figcaption>MegaMania - A Space Nightmare (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mein Weg (Germany) (En).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mein Weg (Germany) (En).png"><figcaption>Mein Weg (Germany) (En)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Meltdown (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Meltdown (USA) (Proto).png"><figcaption>Meltdown (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Midnight Magic (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Midnight Magic (USA).png"><figcaption>Midnight Magic (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Millipede (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Millipede (USA).png"><figcaption>Millipede (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mind Maze (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mind Maze (USA).png"><figcaption>Mind Maze (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Miner 2049er - Starring Bounty Bob (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Miner 2049er - Starring Bounty Bob (USA).png"><figcaption>Miner 2049er - Starring Bounty Bob (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Miner 2049er Volume II (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Miner 2049er Volume II (USA).png"><figcaption>Miner 2049er Volume II (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mines of Minos (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mines of Minos (USA).png"><figcaption>Mines of Minos (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Miniature Golf ~ Arcade Golf (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Miniature Golf ~ Arcade Golf (USA).png"><figcaption>Miniature Golf ~ Arcade Golf (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Missile Command (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Missile Command (USA).png"><figcaption>Missile Command (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Missile Control (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Missile Control (Europe).png"><figcaption>Missile Control (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Missile War ~ Astro War (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Missile War ~ Astro War (Europe).png"><figcaption>Missile War ~ Astro War (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mission Survive (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mission Survive (Europe).png"><figcaption>Mission Survive (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mission 3,000 A.D. (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mission 3,000 A.D. (Europe).png"><figcaption>Mission 3,000 A.D. (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mission 3,000 A.D. (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mission 3,000 A.D. (USA).png"><figcaption>Mission 3,000 A.D. (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Miss Piggy's Wedding (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Miss Piggy's Wedding (USA) (Proto).png"><figcaption>Miss Piggy's Wedding (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mogul Maniac (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mogul Maniac (USA).png"><figcaption>Mogul Maniac (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Monkey Music (Unknown) (1982-08-18) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Monkey Music (Unknown) (1982-08-18) (Proto).png"><figcaption>Monkey Music (Unknown) (1982-08-18) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Monster Cise (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Monster Cise (USA) (Proto).png"><figcaption>Monster Cise (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Montezuma's Revenge - Featuring Panama Joe (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Montezuma's Revenge - Featuring Panama Joe (USA).png"><figcaption>Montezuma's Revenge - Featuring Panama Joe (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Moon Patrol (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Moon Patrol (Europe).png"><figcaption>Moon Patrol (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Moon Patrol (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Moon Patrol (USA).png"><figcaption>Moon Patrol (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Moonsweeper (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Moonsweeper (USA).png"><figcaption>Moonsweeper (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Morse Code Tutor (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Morse Code Tutor (USA).png"><figcaption>Morse Code Tutor (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Motocross Racer (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Motocross Racer (USA).png"><figcaption>Motocross Racer (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Motocross (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Motocross (USA).png"><figcaption>Motocross (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/MotoRodeo (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/MotoRodeo (USA).png"><figcaption>MotoRodeo (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mountain King (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mountain King (USA).png"><figcaption>Mountain King (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mouse Trap (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mouse Trap (Europe).png"><figcaption>Mouse Trap (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mouse Trap (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mouse Trap (USA).png"><figcaption>Mouse Trap (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mr. Do!'s Castle (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mr. Do!'s Castle (USA).png"><figcaption>Mr. Do!'s Castle (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mr. Do! (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mr. Do! (USA).png"><figcaption>Mr. Do! (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mr. Postman (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mr. Postman (Europe).png"><figcaption>Mr. Postman (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mr. Postman (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mr. Postman (USA).png"><figcaption>Mr. Postman (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mr. Run and Jump (World).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mr. Run and Jump (World).png"><figcaption>Mr. Run and Jump (World)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ms. Pac-Man (United Kingdom).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ms. Pac-Man (United Kingdom).png"><figcaption>Ms. Pac-Man (United Kingdom)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ms. Pac-Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ms. Pac-Man (USA).png"><figcaption>Ms. Pac-Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Music Machine, The (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Music Machine, The (USA).png"><figcaption>Music Machine, The (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/My Golf (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/My Golf (Europe).png"><figcaption>My Golf (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mysterious Thief, A (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mysterious Thief, A (USA) (Proto).png"><figcaption>Mysterious Thief, A (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Mystery Science Theater 2600 (USA) (Aftermarket) (Pirate).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Mystery Science Theater 2600 (USA) (Aftermarket) (Pirate).png"><figcaption>Mystery Science Theater 2600 (USA) (Aftermarket) (Pirate)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Name This Game (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Name This Game (USA).png"><figcaption>Name This Game (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Night Driver (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Night Driver (Europe).png"><figcaption>Night Driver (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Night Driver (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Night Driver (USA).png"><figcaption>Night Driver (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Nightmare (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Nightmare (Europe).png"><figcaption>Nightmare (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/No Escape! (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/No Escape! (USA).png"><figcaption>No Escape! (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Nuts (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Nuts (Europe).png"><figcaption>Nuts (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Nuts (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Nuts (USA).png"><figcaption>Nuts (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Obelix (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Obelix (USA).png"><figcaption>Obelix (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Official Frogger, The (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Official Frogger, The (USA).png"><figcaption>Official Frogger, The (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Off the Wall (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Off the Wall (USA).png"><figcaption>Off the Wall (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Off Your Rocker (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Off Your Rocker (USA) (Proto).png"><figcaption>Off Your Rocker (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Oink! (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Oink! (USA).png"><figcaption>Oink! (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Omega Race (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Omega Race (USA).png"><figcaption>Omega Race (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/O Monstro Marinho (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/O Monstro Marinho (Europe).png"><figcaption>O Monstro Marinho (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Oozy the Goo Slime Quest (World) (Cart) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Oozy the Goo Slime Quest (World) (Cart) (Aftermarket).png"><figcaption>Oozy the Goo Slime Quest (World) (Cart) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Open Sesame (Europe) (Bit Corporation).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Open Sesame (Europe) (Bit Corporation).png"><figcaption>Open Sesame (Europe) (Bit Corporation)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Open Sesame (Europe) (Goliath).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Open Sesame (Europe) (Goliath).png"><figcaption>Open Sesame (Europe) (Goliath)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Oscar's Trash Race (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Oscar's Trash Race (USA).png"><figcaption>Oscar's Trash Race (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Othello (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Othello (USA).png"><figcaption>Othello (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Outlaw (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Outlaw (Europe).png"><figcaption>Outlaw (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Outlaw ~ Gunslinger (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Outlaw ~ Gunslinger (USA).png"><figcaption>Outlaw ~ Gunslinger (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Out of Control (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Out of Control (USA).png"><figcaption>Out of Control (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Oystron (World) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Oystron (World) (Aftermarket) (Unl).png"><figcaption>Oystron (World) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pac-Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pac-Man (USA).png"><figcaption>Pac-Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Panda Chase (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Panda Chase (Europe).png"><figcaption>Panda Chase (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Parachute (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Parachute (Europe).png"><figcaption>Parachute (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Party Mix (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Party Mix (USA).png"><figcaption>Party Mix (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Peek-A-Boo (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Peek-A-Boo (USA) (Proto).png"><figcaption>Peek-A-Boo (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pengo (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pengo (USA).png"><figcaption>Pengo (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pete Rose Baseball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pete Rose Baseball (USA).png"><figcaption>Pete Rose Baseball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Peter Penguin (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Peter Penguin (Europe).png"><figcaption>Peter Penguin (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Phantom Tank (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Phantom Tank (Europe).png"><figcaption>Phantom Tank (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Phantom UFO (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Phantom UFO (USA).png"><figcaption>Phantom UFO (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pharaoh's Curse (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pharaoh's Curse (Europe).png"><figcaption>Pharaoh's Curse (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pharaoh's Curse (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pharaoh's Curse (USA).png"><figcaption>Pharaoh's Curse (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Phaser Patrol (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Phaser Patrol (USA).png"><figcaption>Phaser Patrol (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Phoenix (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Phoenix (USA).png"><figcaption>Phoenix (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pick 'n' Pile (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pick 'n' Pile (Europe).png"><figcaption>Pick 'n' Pile (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pick Up (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pick Up (USA) (Proto).png"><figcaption>Pick Up (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Picnic (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Picnic (USA).png"><figcaption>Picnic (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Piece o' Cake (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Piece o' Cake (USA).png"><figcaption>Piece o' Cake (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pigs in Space - Starring Miss Piggy (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pigs in Space - Starring Miss Piggy (USA).png"><figcaption>Pigs in Space - Starring Miss Piggy (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pitfall II - Lost Caverns (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pitfall II - Lost Caverns (USA).png"><figcaption>Pitfall II - Lost Caverns (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pitfall! - Pitfall Harry's Jungle Adventure (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pitfall! - Pitfall Harry's Jungle Adventure (USA).png"><figcaption>Pitfall! - Pitfall Harry's Jungle Adventure (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pizza Chef (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pizza Chef (USA) (Proto).png"><figcaption>Pizza Chef (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Planet of the Apes (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Planet of the Apes (USA) (Proto).png"><figcaption>Planet of the Apes (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Planet Patrol (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Planet Patrol (USA).png"><figcaption>Planet Patrol (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Plaque Attack (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Plaque Attack (USA).png"><figcaption>Plaque Attack (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pleiades (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pleiades (USA) (Proto).png"><figcaption>Pleiades (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Polaris (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Polaris (USA).png"><figcaption>Polaris (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pole Position (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pole Position (USA).png"><figcaption>Pole Position (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Polo (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Polo (USA) (Proto).png"><figcaption>Polo (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pompeii (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pompeii (USA) (Proto).png"><figcaption>Pompeii (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pooyan (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pooyan (USA).png"><figcaption>Pooyan (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Popeye (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Popeye (USA).png"><figcaption>Popeye (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Porky's (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Porky's (USA).png"><figcaption>Porky's (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Power Lords (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Power Lords (USA) (Proto).png"><figcaption>Power Lords (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pressure Cooker (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pressure Cooker (USA).png"><figcaption>Pressure Cooker (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Private Eye (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Private Eye (USA).png"><figcaption>Private Eye (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pursuit of the Pink Panther (USA) (Proto) [b].zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pursuit of the Pink Panther (USA) (Proto) [b].png"><figcaption>Pursuit of the Pink Panther (USA) (Proto) [b]</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Pygmy (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Pygmy (Europe).png"><figcaption>Pygmy (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Q-bert's Qubes (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Q-bert's Qubes (USA).png"><figcaption>Q-bert's Qubes (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Q-bert (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Q-bert (USA).png"><figcaption>Q-bert (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Quadrun (USA, Europe) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Quadrun (USA, Europe) (Atari Anthology).png"><figcaption>Quadrun (USA, Europe) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Quadrun (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Quadrun (USA).png"><figcaption>Quadrun (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Quest for Quintana Roo (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Quest for Quintana Roo (USA).png"><figcaption>Quest for Quintana Roo (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Quick Step! (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Quick Step! (USA).png"><figcaption>Quick Step! (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Rabbit Transit (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Rabbit Transit (USA).png"><figcaption>Rabbit Transit (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Racer (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Racer (USA) (Proto).png"><figcaption>Racer (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Racing Car (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Racing Car (USA).png"><figcaption>Racing Car (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Racquetball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Racquetball (USA).png"><figcaption>Racquetball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Radar Lock (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Radar Lock (USA).png"><figcaption>Radar Lock (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Radar (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Radar (USA).png"><figcaption>Radar (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Raft Rider (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Raft Rider (USA).png"><figcaption>Raft Rider (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Raiders of the Lost Ark (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Raiders of the Lost Ark (USA).png"><figcaption>Raiders of the Lost Ark (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ram It (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ram It (USA).png"><figcaption>Ram It (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Rampage! (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Rampage! (USA).png"><figcaption>Rampage! (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Raumpatrouille (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Raumpatrouille (USA).png"><figcaption>Raumpatrouille (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Reactor (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Reactor (USA).png"><figcaption>Reactor (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/RealSports Baseball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/RealSports Baseball (USA).png"><figcaption>RealSports Baseball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/RealSports Basketball (Europe) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/RealSports Basketball (Europe) (Proto).png"><figcaption>RealSports Basketball (Europe) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/RealSports Boxing (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/RealSports Boxing (USA).png"><figcaption>RealSports Boxing (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/RealSports Football (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/RealSports Football (USA).png"><figcaption>RealSports Football (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/RealSports Soccer (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/RealSports Soccer (USA).png"><figcaption>RealSports Soccer (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/RealSports Tennis (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/RealSports Tennis (Europe).png"><figcaption>RealSports Tennis (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/RealSports Tennis (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/RealSports Tennis (USA).png"><figcaption>RealSports Tennis (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/RealSports Volleyball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/RealSports Volleyball (USA).png"><figcaption>RealSports Volleyball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Red Sea Crossing (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Red Sea Crossing (USA).png"><figcaption>Red Sea Crossing (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Rescue Terra I (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Rescue Terra I (USA).png"><figcaption>Rescue Terra I (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Revenge of the Beefsteak Tomatoes (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Revenge of the Beefsteak Tomatoes (USA).png"><figcaption>Revenge of the Beefsteak Tomatoes (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Riddle of the Sphinx (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Riddle of the Sphinx (USA).png"><figcaption>Riddle of the Sphinx (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/River Patrol (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/River Patrol (USA).png"><figcaption>River Patrol (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/River Raid II (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/River Raid II (USA).png"><figcaption>River Raid II (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/River Raid (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/River Raid (USA).png"><figcaption>River Raid (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Road Runner (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Road Runner (USA).png"><figcaption>Road Runner (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Robin Hood (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Robin Hood (USA).png"><figcaption>Robin Hood (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Robo-Ninja Climb (World) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Robo-Ninja Climb (World) (Aftermarket) (Unl).png"><figcaption>Robo-Ninja Climb (World) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Robot Tank (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Robot Tank (USA).png"><figcaption>Robot Tank (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Rocky & Bullwinkle (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Rocky & Bullwinkle (USA) (Proto).png"><figcaption>Rocky & Bullwinkle (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Roc 'n Rope (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Roc 'n Rope (USA).png"><figcaption>Roc 'n Rope (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Room of Doom (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Room of Doom (USA).png"><figcaption>Room of Doom (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Rubik's Cube (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Rubik's Cube (USA).png"><figcaption>Rubik's Cube (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Rubik's Cube 3-D (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Rubik's Cube 3-D (USA) (Proto).png"><figcaption>Rubik's Cube 3-D (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Rush Hour (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Rush Hour (USA) (Proto).png"><figcaption>Rush Hour (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Saboteur (USA) (Proto) (1983-09-02).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Saboteur (USA) (Proto) (1983-09-02).png"><figcaption>Saboteur (USA) (Proto) (1983-09-02)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Saboteur (USA) (Proto) (1983-12-20).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Saboteur (USA) (Proto) (1983-12-20).png"><figcaption>Saboteur (USA) (Proto) (1983-12-20)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/S.A.C. Alert (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/S.A.C. Alert (USA) (Proto).png"><figcaption>S.A.C. Alert (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Save Mary! (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Save Mary! (USA) (Proto).png"><figcaption>Save Mary! (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Save Our Ship (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Save Our Ship (Europe).png"><figcaption>Save Our Ship (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Save Our Ship (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Save Our Ship (USA).png"><figcaption>Save Our Ship (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Save the Whales (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Save the Whales (USA) (Proto).png"><figcaption>Save the Whales (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/SCRMNN (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/SCRMNN (USA) (Proto).png"><figcaption>SCRMNN (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sea Battle (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sea Battle (USA).png"><figcaption>Sea Battle (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Seahawk (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Seahawk (Europe).png"><figcaption>Seahawk (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sea Hawk (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sea Hawk (USA).png"><figcaption>Sea Hawk (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sea Hunt ~ Scuba Diver (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sea Hunt ~ Scuba Diver (USA).png"><figcaption>Sea Hunt ~ Scuba Diver (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sea Monster (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sea Monster (USA).png"><figcaption>Sea Monster (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Seaquest (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Seaquest (USA).png"><figcaption>Seaquest (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Secret Agent (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Secret Agent (USA) (Proto).png"><figcaption>Secret Agent (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Secret Quest (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Secret Quest (USA).png"><figcaption>Secret Quest (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/See Saw (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/See Saw (Europe).png"><figcaption>See Saw (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sentinel (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sentinel (USA).png"><figcaption>Sentinel (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sheep It Up! - NTSC (World) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sheep It Up! - NTSC (World) (Aftermarket) (Unl).png"><figcaption>Sheep It Up! - NTSC (World) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sheep It Up! - PAL (World) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sheep It Up! - PAL (World) (Aftermarket) (Unl).png"><figcaption>Sheep It Up! - PAL (World) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sheep It Up! - SECAM (World) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sheep It Up! - SECAM (World) (Aftermarket) (Unl).png"><figcaption>Sheep It Up! - SECAM (World) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Shootin' Gallery (Europe) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Shootin' Gallery (Europe) (Proto).png"><figcaption>Shootin' Gallery (Europe) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Shootin' Gallery (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Shootin' Gallery (USA).png"><figcaption>Shootin' Gallery (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Shooting Arcade (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Shooting Arcade (USA) (Proto).png"><figcaption>Shooting Arcade (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Shuttle Orbiter (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Shuttle Orbiter (USA).png"><figcaption>Shuttle Orbiter (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sinistar (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sinistar (USA) (Proto).png"><figcaption>Sinistar (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sir Lancelot (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sir Lancelot (USA).png"><figcaption>Sir Lancelot (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Six Pack (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Six Pack (USA) (Proto).png"><figcaption>Six Pack (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Skate Boardin' (USA) (Activision Anthology - Remix Edition).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Skate Boardin' (USA) (Activision Anthology - Remix Edition).png"><figcaption>Skate Boardin' (USA) (Activision Anthology - Remix Edition)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Skate Boardin' (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Skate Boardin' (USA).png"><figcaption>Skate Boardin' (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Skeet Shoot (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Skeet Shoot (USA).png"><figcaption>Skeet Shoot (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ski Hunt (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ski Hunt (Europe).png"><figcaption>Ski Hunt (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Skiing (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Skiing (USA).png"><figcaption>Skiing (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Skindiver (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Skindiver (Europe).png"><figcaption>Skindiver (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ski Run (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ski Run (Europe).png"><figcaption>Ski Run (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Ski Run (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Ski Run (USA).png"><figcaption>Ski Run (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sky Alien ~ Assault (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sky Alien ~ Assault (Europe).png"><figcaption>Sky Alien ~ Assault (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sky Diver ~ Dare Diver (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sky Diver ~ Dare Diver (USA).png"><figcaption>Sky Diver ~ Dare Diver (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sky Jinks (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sky Jinks (USA).png"><figcaption>Sky Jinks (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sky Patrol (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sky Patrol (USA) (Proto).png"><figcaption>Sky Patrol (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sky Skipper (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sky Skipper (USA).png"><figcaption>Sky Skipper (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Slot Machine ~ Slots (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Slot Machine ~ Slots (USA).png"><figcaption>Slot Machine ~ Slots (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Slot Racers (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Slot Racers (Europe).png"><figcaption>Slot Racers (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Slot Racers ~ Maze (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Slot Racers ~ Maze (USA).png"><figcaption>Slot Racers ~ Maze (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Smurf - Rescue in Gargamel's Castle (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Smurf - Rescue in Gargamel's Castle (USA).png"><figcaption>Smurf - Rescue in Gargamel's Castle (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Smurfs Save the Day (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Smurfs Save the Day (USA).png"><figcaption>Smurfs Save the Day (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Snail Against Squirrel (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Snail Against Squirrel (Europe).png"><figcaption>Snail Against Squirrel (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sneak 'n Peek (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sneak 'n Peek (USA).png"><figcaption>Sneak 'n Peek (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Snoopy and the Red Baron (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Snoopy and the Red Baron (USA).png"><figcaption>Snoopy and the Red Baron (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Snow White and the Seven Dwarfs (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Snow White and the Seven Dwarfs (USA) (Proto).png"><figcaption>Snow White and the Seven Dwarfs (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Solar Fox (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Solar Fox (USA).png"><figcaption>Solar Fox (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Solaris (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Solaris (USA).png"><figcaption>Solaris (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Solar Storm (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Solar Storm (USA).png"><figcaption>Solar Storm (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sonar (Unknown) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sonar (Unknown) (Proto).png"><figcaption>Sonar (Unknown) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sorcerer's Apprentice (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sorcerer's Apprentice (USA).png"><figcaption>Sorcerer's Apprentice (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sorcerer (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sorcerer (USA).png"><figcaption>Sorcerer (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sound (USA, Europe) (Demo) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sound (USA, Europe) (Demo) (Atari Anthology).png"><figcaption>Sound (USA, Europe) (Demo) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Space Attack (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Space Attack (USA).png"><figcaption>Space Attack (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Space Cavern (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Space Cavern (USA).png"><figcaption>Space Cavern (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Spacechase (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Spacechase (USA).png"><figcaption>Spacechase (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Space Invaders (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Space Invaders (USA).png"><figcaption>Space Invaders (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Space Jockey (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Space Jockey (USA).png"><figcaption>Space Jockey (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/SpaceMaster X-7 (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/SpaceMaster X-7 (USA).png"><figcaption>SpaceMaster X-7 (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Space Shuttle - A Journey into Space (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Space Shuttle - A Journey into Space (USA).png"><figcaption>Space Shuttle - A Journey into Space (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Space Tunnel (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Space Tunnel (USA).png"><figcaption>Space Tunnel (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Space War (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Space War (Europe).png"><figcaption>Space War (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Space War ~ Space Combat (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Space War ~ Space Combat (USA).png"><figcaption>Space War ~ Space Combat (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Spider Fighter (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Spider Fighter (USA).png"><figcaption>Spider Fighter (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Spider-Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Spider-Man (USA).png"><figcaption>Spider-Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Spider Maze (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Spider Maze (USA).png"><figcaption>Spider Maze (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Spike's Peak (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Spike's Peak (USA).png"><figcaption>Spike's Peak (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Spinning Fireball (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Spinning Fireball (USA) (Proto).png"><figcaption>Spinning Fireball (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Spitfire Attack (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Spitfire Attack (USA).png"><figcaption>Spitfire Attack (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Springer (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Springer (USA).png"><figcaption>Springer (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sprint Master (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sprint Master (USA).png"><figcaption>Sprint Master (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Spy Hunter (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Spy Hunter (USA).png"><figcaption>Spy Hunter (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Squeeze Box (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Squeeze Box (USA).png"><figcaption>Squeeze Box (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Squirrel ~ O Esquilo (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Squirrel ~ O Esquilo (USA).png"><figcaption>Squirrel ~ O Esquilo (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Squoosh (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Squoosh (USA) (Proto).png"><figcaption>Squoosh (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sssnake (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sssnake (USA).png"><figcaption>Sssnake (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Stampede (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Stampede (USA).png"><figcaption>Stampede (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Fox (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Fox (USA).png"><figcaption>Star Fox (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Stargate (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Stargate (USA).png"><figcaption>Stargate (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Stargunner (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Stargunner (USA).png"><figcaption>Stargunner (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/StarMaster (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/StarMaster (USA).png"><figcaption>StarMaster (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Raiders (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Raiders (USA).png"><figcaption>Star Raiders (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Ship ~ Outer Space (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Ship ~ Outer Space (USA).png"><figcaption>Star Ship ~ Outer Space (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Strike (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Strike (USA).png"><figcaption>Star Strike (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Trek - Strategic Operations Simulator (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Trek - Strategic Operations Simulator (USA).png"><figcaption>Star Trek - Strategic Operations Simulator (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Voyager (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Voyager (USA).png"><figcaption>Star Voyager (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Wars - Jedi Arena (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Wars - Jedi Arena (USA).png"><figcaption>Star Wars - Jedi Arena (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Wars - Return of the Jedi - Death Star Battle (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Wars - Return of the Jedi - Death Star Battle (USA).png"><figcaption>Star Wars - Return of the Jedi - Death Star Battle (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Wars - Return of the Jedi - Ewok Adventure (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Wars - Return of the Jedi - Ewok Adventure (USA) (Proto).png"><figcaption>Star Wars - Return of the Jedi - Ewok Adventure (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Wars - The Arcade Game (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Wars - The Arcade Game (USA).png"><figcaption>Star Wars - The Arcade Game (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Star Wars - The Empire Strikes Back (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Star Wars - The Empire Strikes Back (USA).png"><figcaption>Star Wars - The Empire Strikes Back (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Steeplechase (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Steeplechase (Europe).png"><figcaption>Steeplechase (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Steeplechase (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Steeplechase (USA).png"><figcaption>Steeplechase (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Stellar Track (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Stellar Track (USA).png"><figcaption>Stellar Track (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Stone Age (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Stone Age (USA).png"><figcaption>Stone Age (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Strategy X (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Strategy X (USA).png"><figcaption>Strategy X (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Strawberry Shortcake - Musical Match-Ups (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Strawberry Shortcake - Musical Match-Ups (USA).png"><figcaption>Strawberry Shortcake - Musical Match-Ups (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Street Racer - Speedway II (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Street Racer - Speedway II (Europe).png"><figcaption>Street Racer - Speedway II (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Street Racer ~ Speedway II (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Street Racer ~ Speedway II (USA).png"><figcaption>Street Racer ~ Speedway II (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Stronghold (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Stronghold (USA).png"><figcaption>Stronghold (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Stunt Cycle (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Stunt Cycle (USA) (Proto).png"><figcaption>Stunt Cycle (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Stunt Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Stunt Man (USA).png"><figcaption>Stunt Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Submarine Commander (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Submarine Commander (USA).png"><figcaption>Submarine Commander (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sub-Scan (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sub-Scan (USA).png"><figcaption>Sub-Scan (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Subterranea (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Subterranea (USA).png"><figcaption>Subterranea (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Suicide Mission (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Suicide Mission (USA).png"><figcaption>Suicide Mission (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Summer Games (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Summer Games (USA).png"><figcaption>Summer Games (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Super Baseball (USA, Europe) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Super Baseball (USA, Europe) (Atari Anthology).png"><figcaption>Super Baseball (USA, Europe) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Super Baseball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Super Baseball (USA).png"><figcaption>Super Baseball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Super Breakout (USA) (Alt).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Super Breakout (USA) (Alt).png"><figcaption>Super Breakout (USA) (Alt)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Super Breakout (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Super Breakout (USA).png"><figcaption>Super Breakout (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Super Cobra (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Super Cobra (USA).png"><figcaption>Super Cobra (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Super Football (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Super Football (USA).png"><figcaption>Super Football (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Super Challenge Baseball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Super Challenge Baseball (USA).png"><figcaption>Super Challenge Baseball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Super Challenge Football (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Super Challenge Football (USA).png"><figcaption>Super Challenge Football (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Superman (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Superman (USA).png"><figcaption>Superman (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Surfer's Paradise - But Danger Below! (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Surfer's Paradise - But Danger Below! (Europe).png"><figcaption>Surfer's Paradise - But Danger Below! (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Surf's Up (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Surf's Up (USA) (Proto).png"><figcaption>Surf's Up (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Surround (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Surround (Europe).png"><figcaption>Surround (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Surround ~ Chase (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Surround ~ Chase (USA).png"><figcaption>Surround ~ Chase (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Survival Island (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Survival Island (USA).png"><figcaption>Survival Island (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Survival Run (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Survival Run (USA) (Proto).png"><figcaption>Survival Run (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Survival Run (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Survival Run (USA).png"><figcaption>Survival Run (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sweat! The Decathlon Game (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sweat! The Decathlon Game (USA).png"><figcaption>Sweat! The Decathlon Game (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Swordfight (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Swordfight (USA).png"><figcaption>Swordfight (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Sword of Saros (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Sword of Saros (USA).png"><figcaption>Sword of Saros (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/SwordQuest - EarthWorld (USA, Europe) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/SwordQuest - EarthWorld (USA, Europe) (Atari Anthology).png"><figcaption>SwordQuest - EarthWorld (USA, Europe) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/SwordQuest - EarthWorld (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/SwordQuest - EarthWorld (USA).png"><figcaption>SwordQuest - EarthWorld (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/SwordQuest - FireWorld (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/SwordQuest - FireWorld (USA).png"><figcaption>SwordQuest - FireWorld (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/SwordQuest - WaterWorld (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/SwordQuest - WaterWorld (USA).png"><figcaption>SwordQuest - WaterWorld (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/synthcart (Europe) (PAL) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/synthcart (Europe) (PAL) (Aftermarket).png"><figcaption>synthcart (Europe) (PAL) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/synthcart (USA) (NTSC) (Aftermarket).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/synthcart (USA) (NTSC) (Aftermarket).png"><figcaption>synthcart (USA) (NTSC) (Aftermarket)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tac-Scan (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tac-Scan (USA).png"><figcaption>Tac-Scan (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tank AI (USA, Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tank AI (USA, Europe).png"><figcaption>Tank AI (USA, Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tanks but No Tanks (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tanks but No Tanks (USA).png"><figcaption>Tanks but No Tanks (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tapeworm (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tapeworm (USA).png"><figcaption>Tapeworm (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tapper (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tapper (USA).png"><figcaption>Tapper (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tax Avoiders (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tax Avoiders (USA).png"><figcaption>Tax Avoiders (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Taz (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Taz (USA).png"><figcaption>Taz (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Telepathy (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Telepathy (USA) (Proto).png"><figcaption>Telepathy (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tempest (USA) (Proto) (Atari Anthology).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tempest (USA) (Proto) (Atari Anthology).png"><figcaption>Tempest (USA) (Proto) (Atari Anthology)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tempest (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tempest (USA) (Proto).png"><figcaption>Tempest (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tennis (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tennis (USA).png"><figcaption>Tennis (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Texas Chainsaw Massacre, The (USA) (Beta).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Texas Chainsaw Massacre, The (USA) (Beta).png"><figcaption>Texas Chainsaw Massacre, The (USA) (Beta)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Texas Chainsaw Massacre, The (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Texas Chainsaw Massacre, The (USA).png"><figcaption>Texas Chainsaw Massacre, The (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Threshold (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Threshold (USA).png"><figcaption>Threshold (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Thunderground (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Thunderground (USA).png"><figcaption>Thunderground (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Thwocker (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Thwocker (USA) (Proto).png"><figcaption>Thwocker (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Time Pilot (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Time Pilot (USA).png"><figcaption>Time Pilot (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Time Warp (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Time Warp (Europe).png"><figcaption>Time Warp (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Time Warp (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Time Warp (USA).png"><figcaption>Time Warp (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Title Match Pro Wrestling (USA) (Activision Anthology - Remix Edition).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Title Match Pro Wrestling (USA) (Activision Anthology - Remix Edition).png"><figcaption>Title Match Pro Wrestling (USA) (Activision Anthology - Remix Edition)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Title Match Pro Wrestling (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Title Match Pro Wrestling (USA).png"><figcaption>Title Match Pro Wrestling (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tomarc the Barbarian (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tomarc the Barbarian (USA).png"><figcaption>Tomarc the Barbarian (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tomcat - The F-14 Fighter Simulator (Europe) (Activision Anthology - Remix Edition) (PAL).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tomcat - The F-14 Fighter Simulator (Europe) (Activision Anthology - Remix Edition) (PAL).png"><figcaption>Tomcat - The F-14 Fighter Simulator (Europe) (Activision Anthology - Remix Edition) (PAL)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tooth Protectors (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tooth Protectors (USA).png"><figcaption>Tooth Protectors (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Towering Inferno (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Towering Inferno (USA).png"><figcaption>Towering Inferno (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Track and Field (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Track and Field (USA).png"><figcaption>Track and Field (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Treasure Below (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Treasure Below (Europe).png"><figcaption>Treasure Below (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Treasure Island (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Treasure Island (Europe).png"><figcaption>Treasure Island (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Trick Shot (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Trick Shot (USA).png"><figcaption>Trick Shot (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/TRON - Deadly Discs (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/TRON - Deadly Discs (USA).png"><figcaption>TRON - Deadly Discs (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tunnel de L'Espace, Le (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tunnel de L'Espace, Le (Europe).png"><figcaption>Tunnel de L'Espace, Le (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tunnel Runner (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tunnel Runner (USA).png"><figcaption>Tunnel Runner (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Turbo (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Turbo (USA) (Proto).png"><figcaption>Turbo (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Turmoil (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Turmoil (USA).png"><figcaption>Turmoil (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Tutankham (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Tutankham (USA).png"><figcaption>Tutankham (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Universal Chaos (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Universal Chaos (USA).png"><figcaption>Universal Chaos (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Up 'n Down (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Up 'n Down (USA).png"><figcaption>Up 'n Down (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Vanguard (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Vanguard (USA).png"><figcaption>Vanguard (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Vault Assault (USA) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Vault Assault (USA) (Unl).png"><figcaption>Vault Assault (USA) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Venetian Blinds Demo (USA) (Demo).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Venetian Blinds Demo (USA) (Demo).png"><figcaption>Venetian Blinds Demo (USA) (Demo)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Venture (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Venture (USA).png"><figcaption>Venture (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Video Checkers ~ Checkers (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Video Checkers ~ Checkers (USA).png"><figcaption>Video Checkers ~ Checkers (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Video Chess (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Video Chess (USA).png"><figcaption>Video Chess (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Video Jogger (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Video Jogger (USA).png"><figcaption>Video Jogger (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Video Life (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Video Life (USA).png"><figcaption>Video Life (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Video Olympics ~ Pong Sports (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Video Olympics ~ Pong Sports (USA).png"><figcaption>Video Olympics ~ Pong Sports (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Video Pinball ~ Arcade Pinball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Video Pinball ~ Arcade Pinball (USA).png"><figcaption>Video Pinball ~ Arcade Pinball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Video Reflex (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Video Reflex (USA).png"><figcaption>Video Reflex (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Vogel Flieh (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Vogel Flieh (Europe).png"><figcaption>Vogel Flieh (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wabbit (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wabbit (USA).png"><figcaption>Wabbit (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Walker ~ Schussel, der Polizistenschreck (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Walker ~ Schussel, der Polizistenschreck (Europe).png"><figcaption>Walker ~ Schussel, der Polizistenschreck (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall Ball (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall Ball (USA).png"><figcaption>Wall Ball (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall Break (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall Break (Europe).png"><figcaption>Wall Break (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall-Defender (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall-Defender (USA).png"><figcaption>Wall-Defender (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall Jump Ninja (World) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall Jump Ninja (World) (Aftermarket) (Unl).png"><figcaption>Wall Jump Ninja (World) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall Jump Ninja (World) (v1.1) (2016-05-08) (NTSC) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall Jump Ninja (World) (v1.1) (2016-05-08) (NTSC) (Aftermarket) (Unl).png"><figcaption>Wall Jump Ninja (World) (v1.1) (2016-05-08) (NTSC) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall Jump Ninja (World) (v1.1) (2016-05-08) (PAL) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall Jump Ninja (World) (v1.1) (2016-05-08) (PAL) (Aftermarket) (Unl).png"><figcaption>Wall Jump Ninja (World) (v1.1) (2016-05-08) (PAL) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall Jump Ninja (World) (2015-01-15) (NTSC) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall Jump Ninja (World) (2015-01-15) (NTSC) (Aftermarket) (Unl).png"><figcaption>Wall Jump Ninja (World) (2015-01-15) (NTSC) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall Jump Ninja (World) (2015-01-15) (PAL) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall Jump Ninja (World) (2015-01-15) (PAL) (Aftermarket) (Unl).png"><figcaption>Wall Jump Ninja (World) (2015-01-15) (PAL) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wall Jump Ninja (World) (2015-01-15) (PAL 60Hz) (Aftermarket) (Unl).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wall Jump Ninja (World) (2015-01-15) (PAL 60Hz) (Aftermarket) (Unl).png"><figcaption>Wall Jump Ninja (World) (2015-01-15) (PAL 60Hz) (Aftermarket) (Unl)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Warlords (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Warlords (USA).png"><figcaption>Warlords (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Warplock (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Warplock (USA).png"><figcaption>Warplock (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wings (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wings (USA) (Proto).png"><figcaption>Wings (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wing War (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wing War (Europe).png"><figcaption>Wing War (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Winter Games (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Winter Games (USA).png"><figcaption>Winter Games (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wizard of Wor (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wizard of Wor (USA).png"><figcaption>Wizard of Wor (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Wizard (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Wizard (USA) (Proto).png"><figcaption>Wizard (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Words-Attack (Europe) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Words-Attack (Europe) (Proto).png"><figcaption>Words-Attack (Europe) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Word Zapper (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Word Zapper (USA).png"><figcaption>Word Zapper (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/World End (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/World End (Europe).png"><figcaption>World End (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/World End (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/World End (USA).png"><figcaption>World End (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Worm War I (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Worm War I (USA).png"><figcaption>Worm War I (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Xenophobe (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Xenophobe (USA).png"><figcaption>Xenophobe (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Xevious (USA) (Proto) (1983-08-02).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Xevious (USA) (Proto) (1983-08-02).png"><figcaption>Xevious (USA) (Proto) (1983-08-02)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Xevious (USA) (Proto) (1984-01-18).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Xevious (USA) (Proto) (1984-01-18).png"><figcaption>Xevious (USA) (Proto) (1984-01-18)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/X-Man (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/X-Man (USA).png"><figcaption>X-Man (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Yars' Revenge (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Yars' Revenge (USA).png"><figcaption>Yars' Revenge (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Zaxxon (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Zaxxon (USA).png"><figcaption>Zaxxon (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Zoo Fun (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Zoo Fun (USA).png"><figcaption>Zoo Fun (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Zoo Keeper Sounds (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Zoo Keeper Sounds (USA) (Proto).png"><figcaption>Zoo Keeper Sounds (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/Z-Tack (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/Z-Tack (USA).png"><figcaption>Z-Tack (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/3-D Genesis (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/3-D Genesis (USA) (Proto).png"><figcaption>3-D Genesis (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/3-D Ghost Attack (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/3-D Ghost Attack (USA) (Proto).png"><figcaption>3-D Ghost Attack (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/3-D Havoc (USA) (Proto).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/3-D Havoc (USA) (Proto).png"><figcaption>3-D Havoc (USA) (Proto)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/3-D Tic-Tac-Toe (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/3-D Tic-Tac-Toe (Europe).png"><figcaption>3-D Tic-Tac-Toe (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/3-D Tic-Tac-Toe (USA).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/3-D Tic-Tac-Toe (USA).png"><figcaption>3-D Tic-Tac-Toe (USA)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/3-D Zapper (USA) (Proto) (Earlier).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/3-D Zapper (USA) (Proto) (Earlier).png"><figcaption>3-D Zapper (USA) (Proto) (Earlier)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/3-D Zapper (USA) (Proto) (1982-12-15).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/3-D Zapper (USA) (Proto) (1982-12-15).png"><figcaption>3-D Zapper (USA) (Proto) (1982-12-15)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/32 in 1 Game Cartridge (Europe).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/32 in 1 Game Cartridge (Europe).png"><figcaption>32 in 1 Game Cartridge (Europe)</figcaption></figure></a>
<a href="../myrient/No-Intro/Atari - 2600/4 Game in One (Europe) (Bit Corporation).zip" target=main><figure><img loading=lazy src="https://raw.githubusercontent.com/WizzardSK/Atari_-_2600/master/Named_Snaps/4 Game in One (Europe) (Bit Corporation).png"><figcaption>4 Game in One (Europe) (Bit Corporation)</figcaption></figure></a>
</div><script src="script.js"></script>