-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelectron.html
More file actions
950 lines (950 loc) · 34 KB
/
Copy pathelectron.html
File metadata and controls
950 lines (950 loc) · 34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
<script src="platform.js"></script>
<h3 id="TOSEC" data-count="6" class="section-header">TOSEC</h3>
<script>bgImage("electron")
fileNames = [
"Countdown to Doom (1984)(Acornsoft)[lorom][SCG19]/Countdown to Doom (1984)(Acornsoft)[lorom][SCG19].rom",
"Countdown to Doom (1984)(Acornsoft)[uprom][SCG19]/Countdown to Doom (1984)(Acornsoft)[uprom][SCG19].rom",
"Hopper (1984)(Acornsoft)[SCG23]/Hopper (1984)(Acornsoft)[SCG23].rom",
"Snapper (1983)(Acornsoft)[SCG04]/Snapper (1983)(Acornsoft)[SCG04].rom",
"Starship Command (1983)(Acornsoft)[lorom][SCG22]/Starship Command (1983)(Acornsoft)[lorom][SCG22].rom",
"Starship Command (1983)(Acornsoft)[uprom][SCG22]/Starship Command (1983)(Acornsoft)[uprom][SCG22].rom",
]; generateFileLinks("archive:tosec-main/Acorn/Electron/Games/[BIN]/Acorn Electron - Games - [BIN] (TOSEC-v2018-07-01).zip", "Acorn_-_Electron");</script>
<h3 id="App" data-count="7" class="section-header">App</h3>
<script>bgImage("electron")
fileNames = [
"Acorn Electron Expansion ROM v1.00 (1984)(Acorn)/Acorn Electron Expansion ROM v1.00 (1984)(Acorn).bin",
"Acorn Electron Expansion ROM v1.00 (1984)(Acorn)[a]/Acorn Electron Expansion ROM v1.00 (1984)(Acorn)[a].bin",
"Acorn Electron Expansion ROM v2.02 (1988)(Slogger)/Acorn Electron Expansion ROM v2.02 (1988)(Slogger).bin",
"Acorn Electron Plus 1 Expansion ROM v1.1.1.7 (1984)(Acorn)/Acorn Electron Plus 1 Expansion ROM v1.1.1.7 (1984)(Acorn).bin",
"Acorn Electron Plus 1 Expansion ROM v1.1.2.3 (19xx)(-)/Acorn Electron Plus 1 Expansion ROM v1.1.2.3 (19xx)(-).bin",
"View v1.0 (1984)(Protechnic)/View v1.0 (1984)(Protechnic).bin",
"ViewSheet v1.0 (1984)(Kings)/ViewSheet v1.0 (1984)(Kings).bin",
]; generateFileLinks("archive:tosec-main/Acorn/Electron/Applications/[BIN]/Acorn Electron - Applications - [BIN] (TOSEC-v2013-10-22).zip", "Acorn_-_Electron");</script>
<h3 id="Edu" data-count="2" class="section-header">Edu</h3>
<script>bgImage("electron")
fileNames = [
"Tree of Knowledge (1983)(Acornsoft)[lorom][SCE04]/Tree of Knowledge (1983)(Acornsoft)[lorom][SCE04].rom",
"Tree of Knowledge (1983)(Acornsoft)[uprom][SCE04]/Tree of Knowledge (1983)(Acornsoft)[uprom][SCE04].rom",
]; generateFileLinks("archive:tosec-main/Acorn/Electron/Educational/[BIN]/Acorn Electron - Educational - [BIN] (TOSEC-v2018-07-01).zip", "Acorn_-_Electron");</script>
<h3 id="Demo [UEF]" data-count="2" class="section-header">Demo [UEF]</h3>
<script>bgImage("electron")
fileNames = [
"Acorn Electron Intro Tape (198x)(-)/Acorn Electron Intro Tape (198x)(-).uef",
"Acorn Electron Intro Tape (198x)(-)[a]/Acorn Electron Intro Tape (198x)(-)[a].uef",
]; generateFileLinks("archive:tosec-main/Acorn/Electron/Demos/[UEF]/Acorn Electron - Demos - [UEF] (TOSEC-v2018-07-01).zip", "Acorn_-_Electron");</script>
<h3 id="Edu [UEF]" data-count="21" class="section-header">Edu [UEF]</h3>
<script>bgImage("electron")
fileNames = [
"A Vous La France! (19xx)(BBC)[b]/A Vous La France! (19xx)(BBC)[b].uef",
"ASK - The Way to Learn - Facemaker (198x)(ASK)/ASK - The Way to Learn - Facemaker (198x)(ASK).uef",
"ASK - The Way to Learn - Hide and Seek (198x)(ASK)/ASK - The Way to Learn - Hide and Seek (198x)(ASK).uef",
"ASK - The Way to Learn - Podd (198x)(ASK)/ASK - The Way to Learn - Podd (198x)(ASK).uef",
"ASK - The Way to Learn - Words Words Words (198x)(ASK)/ASK - The Way to Learn - Words Words Words (198x)(ASK).uef",
"Biology (1984)(Acornsoft - Ivan Berg Software)/Biology (1984)(Acornsoft - Ivan Berg Software).uef",
"Electron Basic Programming Starter Pack (198x)(Collins Educational)/Electron Basic Programming Starter Pack (198x)(Collins Educational).uef",
"French on the Run (198x)(Database Software)/French on the Run (198x)(Database Software).uef",
"French on the Run (198x)(Swift)/French on the Run (198x)(Swift).uef",
"Fun School 2 - for 6 to 8's (198x)(Database Educational Software)/Fun School 2 - for 6 to 8's (198x)(Database Educational Software).uef",
"Fun School 2 - for over 8's (198x)(Database Educational Software)/Fun School 2 - for over 8's (198x)(Database Educational Software).uef",
"Fun School 2 - for under 6's (198x)(Database Educational Software)/Fun School 2 - for under 6's (198x)(Database Educational Software).uef",
"Fun With Numbers (1984)(Golem)/Fun With Numbers (1984)(Golem).uef",
"Maths O-level Revision Part 1 - Arithmetic (1984)(Ampalsoft)/Maths O-level Revision Part 1 - Arithmetic (1984)(Ampalsoft).uef",
"Maths O-level Revision Part 1 - Calculus 1 (1984)(Ampalsoft)/Maths O-level Revision Part 1 - Calculus 1 (1984)(Ampalsoft).uef",
"Maths O-level Revision Part 1 - Calculus 2 (1984)(Ampalsoft)/Maths O-level Revision Part 1 - Calculus 2 (1984)(Ampalsoft).uef",
"Maths O-level Revision Part 1 - Constructions (1984)(Ampalsoft)/Maths O-level Revision Part 1 - Constructions (1984)(Ampalsoft).uef",
"Maths Tutor (198x)(-)[b]/Maths Tutor (198x)(-)[b].uef",
"Maths With a Story 1 (1985)(BBC)/Maths With a Story 1 (1985)(BBC).uef",
"Maths With a Story 2 (1985)(BBC)/Maths With a Story 2 (1985)(BBC).uef",
"Twelfth Night (198x)(Penguin Study)/Twelfth Night (198x)(Penguin Study).uef",
]; generateFileLinks("archive:tosec-main/Acorn/Electron/Educational/[UEF]/Acorn Electron - Educational - [UEF] (TOSEC-v2018-07-01).zip", "Acorn_-_Electron");</script>
<h3 id="MAME" data-count="620" class="section-header">MAME</h3>
<script>bgImage("electron")
fileNames = [
"3dbombal.zip 3D Bomb Alley",
"3ddotty.zip 3D Dotty",
"3dmaze.zip 3D Maze",
"3dpool.zip 3D Pool",
"3dtankzo.zip 3D Tank Zone",
"747.zip",
"747flsim.zip 747 Flight Simulator",
"acornu42.zip Acorn User Issue 42 (Jan 1986)",
"acornu48.zip Acorn User Issue 48 (Jul 1986)",
"acornu50.zip Acorn User Issue 50 (Sep 1986)",
"acornu52.zip Acorn User Issue 52 (Nov 1986)",
"acornu53.zip Acorn User Issue 53 (Dec 1986)",
"acornu54.zip Acorn User Issue 54 (Jan 1987)",
"acornu55.zip Acorn User Issue 55 (Feb 1987)",
"acornu56.zip Acorn User Issue 56 (Mar 1987)",
"acornu57.zip Acorn User Issue 57 (Apr 1987)",
"acornu58.zip Acorn User Issue 58 (May 1987)",
"acornu59.zip Acorn User Issue 59 (Jun 1987)",
"acornu60.zip Acorn User Issue 60 (Jul 1987)",
"advanth.zip Adventure Anthology",
"adventur.zip Adventure",
"advland.zip Adventureland",
"airline.zip",
"alienbre.zip Alien Break In",
"aliendro.zip Alien Dropout",
"alphatro.zip Alphatron",
"angles.zip",
"arcadian.zip Arcadians",
"arena3k.zip Arena 3000",
"argcreat.zip Arcade Game Creator",
"arrowd1.zip Arrow of Death Part 1",
"arrowd2.zip Arrow of Death Part 2",
"arsoccer.zip Arcade Soccer",
"aslangc.zip Assembly Language Course",
"astplumb.zip Astro Plumber",
"atomsmas.zip Atom Smasher",
"augamesc.zip Acorn User Games Compendium",
"augraphi.zip Acorn User Graphics",
"ballistx.zip Ballistix",
"balloonb.zip Balloon Buster",
"bandits3.zip Bandits at 3 O'clock",
"banprinc.zip The Banished Prince",
"barbar.zip Barbarian",
"barbar2.zip Barbarian 2",
"barbill.zip Bar Billiards",
"baron.zip",
"batl1917.zip Battle 1917",
"bbgoldru.zip Blockbusters Gold Run",
"bbombs.zip Bouncing Bombs",
"bbusters.zip Blockbusters",
"bdash.zip Boulder Dash",
"beachead.zip Beach Head",
"bertboot.zip Bert Boot",
"bestau.zip Best of Acorn User",
"bestpcw.zip Best of PCW Software",
"birdiecd.zip Birdie Barrage",
"birdspre.zip Birds of Prey",
"birdstri.zip Bird Strike",
"blagger.zip",
"blitzkri.zip Blitzkrieg",
"bloodmut.zip Blood of the Mutineers",
"bobbycha.zip Bobby Charlton Soccer",
"boffin.zip",
"bombbaro.zip Bomber Baron",
"bonecrun.zip Bone Cruncher",
"boxer.zip",
"bozobrav.zip Bozo the Brave",
"braz.zip",
"breakthr.zip Breakthrough",
"brianclo.zip Brian Cloughs Football Fortunes",
"brianjac.zip Brian Jacks Superstar Challenge",
"buckbanz.zip Buckaroo Banzai",
"bugblast.zip Bug Blaster",
"bugeyes.zip Bug Eyes",
"bugs.zip",
"bullseye.zip",
"bumblbee.zip Bumble Bee",
"bunfun.zip Bun Fun",
"busgames.zip Business Games",
"bzone2k.zip Battlezone 2000",
"bzonesix.zip Battlezone Six",
"camelot.zip",
"cascad50.zip Cascade 50",
"castfran.zip Castle Frankenstein",
"castlass.zip Castle Assault",
"caterpil.zip Caterpillar (I.J.K.)",
"caterpir.zip Caterpillar (Romik)",
"caveman.zip",
"cavemanc.zip Caveman Capers",
"cbridge.zip Contract Bridge",
"ccastles.zip Crystal Castles",
"centibug.zip",
"cgraphsg.zip Kreative Graphiken (German)",
"chessa.zip Chess (Acornsoft)",
"chessmp.zip Chess (Micro Power)",
"chipbust.zip Chip Buster",
"chuckieg.zip Chuckie Egg",
"circus.zip",
"circusga.zip Circus Games",
"citadel.zip Citadel (Play It Again Sam 1)",
"classarc.zip Classic Arcade Games",
"clogger.zip",
"codedro.zip Codename: Droid",
"cofriddl.zip Castle of Riddles",
"colos4br.zip Colossus Bridge 4",
"colos4ch.zip Colossus Chess 4",
"comblynx.zip Combat Lynx",
"comm3joy.zip Commander 3 Joystick",
"commando.zip",
"condred.zip Condition Red",
"constell.zip Constellation",
"corncrop.zip Corn Cropper",
"corpclim.zip Corporate Climber",
"cosmicca.zip Cosmic Camouflage",
"countfun.zip Counting Fun",
"crack_up.zip Crack Up",
"crazeeri.zip Crazee Rider",
"croaker.zip",
"crownjew.zip Crown Jewels",
"crtracer.zip Crazy Tracer",
"cskullrd.zip Castle of the Skull Lord",
"custardp.zip Custard Pie Fight",
"cwealthg.zip Commonwealth Games",
"cybermis.zip Cybertron Mission",
"cyborgwa.zip Cyborg Warriors",
"cylonatt.zip Cylon Attack",
"cyloninv.zip Cylon Invasion",
"dallas.zip",
"dangruxb.zip Danger UXB",
"dartsbr.zip Darts",
"datafile.zip Data File",
"dddenis.zip Dare Devil Dennis",
"deathsta.zip Death Star (The Superior Collection Vol.3)",
"denisdri.zip Denis Through the Drinking Glass",
"despride.zip Despatch Rider",
"diamine.zip Diamond Mine",
"diamine2.zip Diamond Mine 2",
"diampete.zip Diamond Pete",
"disassem.zip Disassembler",
"dogfaces.zip Dogfight for Aces Only",
"dominoes.zip Dominoes (Blue Ribbon)",
"dracisla.zip Dracula Island",
"drainman.zip Drain Mania",
"draughtr.zip Draughts and Reversi",
"draughts.zip Draughts (Superior Software)",
"draw.zip",
"dskdiary.zip Desk Diary",
"dunjunz.zip",
"eddiekid.zip Eddie Kidd Jump Challenge",
"einvader.zip Electron Invaders",
"elbugint.zip Elbug Introductory Cassette",
"elcomp1.zip Electron Computing 1",
"elcomp2.zip Electron Computing 2",
"elcomp3.zip Electron Computing 3",
"elcomp4.zip Electron Computing 4",
"elcomp5.zip Electron Computing 5",
"elcomp6.zip Electron Computing 6",
"elcomp7.zip Electron Computing 7",
"electape.zip The Electron Tape - BASIC, Sound and Graphics",
"elite.zip",
"elixir.zip",
"embalpha.zip Escape from Moonbase Alpha",
"enigma.zip",
"erbert.zip Er*Bert",
"escapep7.zip Escape from Pulsar Seven",
"etype.zip E-Type",
"eurknowl.zip European Knowledge",
"euser101.zip Electron User Vol.1, No.1-4",
"euser105.zip Electron User Vol.1, No.5: Lunar Lander",
"euser106.zip Electron User Vol.1, No.6: Chicken!",
"euser107.zip Electron User Vol.1, No.7: Space Hike",
"euser108.zip Electron User Vol.1, No.8: Rally Driver",
"euser109.zip Electron User Vol.1, No.9: Money Maze",
"euser110.zip Electron User Vol.1, No.10: Golf",
"euser111.zip Electron User Vol.1, No.11: Castles of Sand",
"euser112.zip Electron User Vol.1, No.12: Haunted House",
"euser201.zip Electron User Vol.2, No.1: Break Free!",
"euser202.zip Electron User Vol.2, No.2: Star Fighter",
"euser203.zip Electron User Vol.2, No.3: Christmas Box",
"euser204.zip Electron User Vol.2, No.4",
"euser205.zip Electron User Vol.2, No.5: The Kingdom of Craal",
"euser206.zip Electron User Vol.2, No.6",
"euser207.zip Electron User Vol.2, No.7",
"euser208.zip Electron User Vol.2, No.8: Skramble",
"euser209.zip Electron User Vol.2, No.9",
"euser210.zip Electron User Vol.2, No.10: Manic Mole!",
"euser211.zip Electron User Vol.2, No.11",
"euser212.zip Electron User Vol.2, No.12",
"euser301.zip Electron User Vol.3, No.1",
"euser302.zip Electron User Vol.3, No.2",
"euser303.zip Electron User Vol.3, No.3",
"euser304.zip Electron User Vol.3, No.4",
"euser305.zip Electron User Vol.3, No.5",
"euser306.zip Electron User Vol.3, No.6",
"euser307.zip Electron User Vol.3, No.7",
"euser308.zip Electron User Vol.3, No.8",
"euser309.zip Electron User Vol.3, No.9",
"euser310.zip Electron User Vol.3, No.10",
"euser311.zip Electron User Vol.3, No.11",
"euser312.zip Electron User Vol.3, No.12",
"euser401.zip Electron User Vol.4, No.1",
"euser402.zip Electron User Vol.4, No.2",
"euser403.zip Electron User Vol.4, No.3",
"euser404.zip Electron User Vol.4, No.4",
"euser405.zip Electron User Vol.4, No.5",
"euser406.zip Electron User Vol.4, No.6",
"euser407.zip Electron User Vol.4, No.7",
"euser408.zip Electron User Vol.4, No.8",
"euser409.zip Electron User Vol.4, No.9",
"euser410.zip Electron User Vol.4, No.10",
"euser411.zip Electron User Vol.4, No.11",
"euser412.zip Electron User Vol.4, No.12",
"euser501.zip Electron User Vol.5, No.1",
"euser502.zip Electron User Vol.5, No.2",
"euser503.zip Electron User Vol.5, No.3",
"euser504.zip Electron User Vol.5, No.4",
"euser505.zip Electron User Vol.5, No.5",
"euser506.zip Electron User Vol.5, No.6",
"euser507.zip Electron User Vol.5, No.7",
"euser508.zip Electron User Vol.5, No.8",
"euser509.zip Electron User Vol.5, No.9",
"euser510.zip Electron User Vol.5, No.10",
"euser511.zip Electron User Vol.5, No.11",
"euser512.zip Electron User Vol.5, No.12",
"euser601.zip Electron User Vol.6, No.1",
"euser602.zip Electron User Vol.6, No.2",
"euser603.zip Electron User Vol.6, No.3",
"euser604.zip Electron User Vol.6, No.4",
"euser605.zip Electron User Vol.6, No.5",
"euser606.zip Electron User Vol.6, No.6",
"euser607.zip Electron User Vol.6, No.7",
"euser608.zip Electron User Vol.6, No.8",
"euser609.zip Electron User Vol.6, No.9",
"euser610.zip Electron User Vol.6, No.10",
"euser611.zip Electron User Vol.6, No.11",
"euser612.zip Electron User Vol.6, No.12",
"euser701.zip Electron User Vol.7, No.1",
"euser702.zip Electron User Vol.7, No.2",
"euser703.zip Electron User Vol.7, No.3",
"euser704.zip Electron User Vol.7, No.4",
"euser705.zip Electron User Vol.7, No.5",
"euser706.zip Electron User Vol.7, No.6",
"euser707.zip Electron User Vol.7, No.7",
"euser708.zip Electron User Vol.7, No.8",
"euser709.zip Electron User Vol.7, No.9",
"euser710.zip Electron User Vol.7, No.10",
"evenstar.zip Evening Star",
"exile.zip",
"expladv.zip Exploring Adventures",
"farmgirl.zip Felicity Farm Girl",
"fbjoyutl.zip First Byte Joystick Utility",
"feasexpt.zip Feasibility Experiment",
"felixfac.zip Felix in the Factory",
"felixmon.zip Felix and the Fruit Monsters",
"felixwee.zip Felix Meets the Evil Weevils",
"ferryman.zip The Ferryman Awaits",
"fighterp.zip Fighter Pilot",
"finestfa.zip Finest Favourites",
"firebug.zip",
"firetrak.zip FireTrack",
"firienwo.zip Firien Wood",
"footbman.zip Football Manager",
"footbyea.zip Footballer of the Year",
"forth.zip",
"forthg.zip FORTH (German)",
"fpath737.zip Flight Path 737",
"frak.zip Frak!",
"freefall.zip Free Fall",
"frenchru.zip French On The Run",
"frenzy.zip",
"frnk2000.zip Frankenstein 2000",
"frootrai.zip Froot Raid",
"fruitmac.zip Fruit Machine (Alligata)",
"fruitmd.zip Fruit Machine",
"fruitms.zip Fruit Machine (Superior Software)",
"fruitsim.zip Fruit Machine Simulator",
"funhouse.zip Mystery Fun House",
"futuresh.zip Future Shock",
"galafor2.zip Galaforce 2",
"galaforc.zip Galaforce",
"galcmder.zip Galactic Commander",
"galpatro.zip Galactic Patrol",
"gatecras.zip Gatecrasher",
"gauntlet.zip",
"ggoochcr.zip Graham Gooch's Test Cricket",
"ghostown.zip Ghost Town",
"ghouls.zip",
"gisburne.zip Gisburne's Castle",
"gldbaton.zip The Golden Baton",
"go.zip",
"goal.zip Goal!",
"goldenv.zip Golden Voyage",
"golfbr.zip Golf (Blue Ribbon)",
"gorph.zip",
"greedydw.zip The Greedy Dwarf",
"gremlins.zip",
"gridiron.zip Grid Iron",
"guardian.zip",
"gunsmoke.zip",
"gyroscop.zip Gyroscope",
"hacker.zip The Hacker",
"hardhath.zip Hard Hat Harry",
"harerais.zip Hareraiser (Prelude)",
"haushalt.zip Haushaltbudget (German)",
"heathrow.zip Heathrow ATC",
"hellhole.zip Hell Hole",
"heltersk.zip Helter Skelter",
"hiqquiz.zip Hi-Q Quiz",
"hnchback.zip Hunchback",
"hobgobl.zip Hobgoblin",
"hobgobl2.zip Hobgoblin 2",
"holedoc1.zip Holed Out Extra Courses Vol.1",
"holedoc2.zip Holed Out Extra Courses Vol.2",
"holedout.zip Holed Out",
"holygrai.zip The Quest for the Holy Grail",
"hopper.zip",
"horserac.zip Horserace",
"hostages.zip",
"huntshau.zip The Hunt: Search for Shauna",
"hyperdri.zip Hyperdrive",
"hypervpr.zip Hyper Viper",
"hyprball.zip Hyperball",
"ianbotha.zip Ian Botham's Test Match",
"icarus.zip",
"imogen.zip",
"impact.zip",
"impmiss.zip Impossible Mission",
"imv2tcop.zip ImageV2 Tape Copier",
"indoorsp.zip Indoor Sports",
"inertia.zip",
"intergal.zip Intergalactic Trader",
"introcas.zip Introductory Cassette",
"invaderi.zip Invaders (I.J.K.)",
"invaders.zip Invaders (Superior Software)",
"jackatta.zip Jack Attack",
"javastar.zip The Mystery of the Java Star",
"jetbootj.zip Jet-Boot Jack",
"jetpjack.zip Jet-Power Jack",
"jetsetw.zip Jet Set Willy",
"jetsetw2.zip Jet Set Willy II",
"jnrmath.zip Junior Maths Pack",
"joeblad2.zip Joe Blade II",
"joeblade.zip Joe Blade",
"joey.zip",
"joyport.zip",
"jungleji.zip Jungle Jive",
"kamakazi.zip",
"karatecs.zip Karate Combat (The Superior Collection Vol.3)",
"kastle.zip",
"kayleth.zip",
"killerg2.zip Killer Gorilla 2 (Play It Again Sam 3)",
"killergo.zip Killer Gorilla",
"kingdomk.zip The Kingdom of Klein",
"kingdomv.zip Twin Kingdom Valley",
"kissink.zip Kissin' Kousins",
"kourtyd.zip Kourtyard",
"lastfree.zip The Last of the Free",
"lastnin2.zip The Last Ninja 2",
"lastninj.zip The Last Ninja",
"lemmsynd.zip Lemming Syndrome",
"lickill.zip Licence to Kill",
"liferept.zip The Life of Repton",
"lisp.zip",
"lockluck.zip Locks of Luck",
"locomoti.zip Locomotion",
"logo.zip Logo (Extensions and Samples)",
"loonloco.zip Loony Loco",
"loopz.zip",
"lrescue.zip Lunar Rescue",
"lsreflex.zip Laser Reflex",
"magicmus.zip Magic Mushrooms",
"magsword.zip The Magic Sword",
"mango.zip",
"maniacmo.zip Maniac Mower",
"masterbk.zip Master Break",
"mathorv1.zip Maths 'O' Level Revision Part One",
"mathst1.zip Maths with a Story: 1",
"mathst2.zip Maths with a Story: 2",
"maze.zip",
"megaforc.zip Mega Force",
"memicro.zip Me & My Micro",
"meteors.zip",
"mexico86.zip Mexico 86",
"microlym.zip Micro Olympics",
"mikie.zip",
"milliona.zip Millionaire",
"minedout.zip Mined-Out",
"mineshaf.zip Mineshaft",
"misscont.zip Missile Control",
"mmindqm.zip BBC Mastermind Quizmaster",
"moffice.zip Mini Office",
"monsters.zip",
"moonbugg.zip Moon Buggy",
"moonraid.zip Moon Raider",
"mrmenfir.zip First Steps with the Mr.Men",
"mrwiz.zip Mr Wiz",
"mteacht2.zip Merlin Teaches Tables 2",
"mtrap.zip Mouse Trap",
"myorem.zip",
"network.zip Network (Play It Again Sam 15)",
"nightstr.zip Night Strike",
"nightwld.zip Nightworld",
"nmaremaz.zip Nightmare Maze",
"olspecta.zip Olympic Spectacular",
"omegaorb.zip Omega Orb",
"osprey.zip Osprey!",
"overdriv.zip Overdrive",
"oxbridge.zip",
"palmagic.zip Palace of Magic",
"pandemon.zip Pandemonium (Play It Again Sam 13)",
"paperboy.zip",
"pauldani.zip Paul Daniels' Magic Show",
"pcwgames.zip PCW Games Collection",
"pedro.zip",
"peekoc.zip Peeko-Computer",
"pegleg.zip Peg Leg",
"pengi.zip",
"pengwyn.zip",
"perplex.zip Perplexity",
"persandr.zip Perseus and Andromeda",
"pettigre.zip Pettigrews Diary",
"phancomb.zip Phantom Combat",
"phartomb.zip Pharoahs Tomb",
"phquest.zip Philosophers Quest",
"pinball.zip",
"pinbarcd.zip Pinball Arcade",
"pipeline.zip",
"pipemani.zip Pipe Mania",
"piratead.zip Pirate Adventure",
"plantoid.zip Planetoid",
"playbox.zip",
"plunder.zip",
"plus1joy.zip Plus 1 Joystick Utility",
"poolhall.zip Pool Hall",
"positron.zip",
"ppenguin.zip Percy Penguin",
"predator.zip",
"primart.zip Primary Art",
"proboxin.zip Pro Boxing Simulator",
"projthes.zip Project Thesius",
"psycast.zip Psycastria",
"psycast2.zip Psycastria 2",
"pyrdoom.zip Pyramid of Doom",
"qbix.zip Q*Bix",
"qofsport.zip A Question of Sport",
"qphulk.zip Questprobe: The Hulk",
"qpthing.zip Questprobe: Human Torch and The Thing",
"quest.zip",
"questfr.zip Quest for Freedom",
"quikthin.zip Quick Thinking!",
"qwak.zip",
"ransack.zip Ransack!",
"ravage.zip",
"ravskull.zip Ravenskull",
"readra3.zip Read Right Away 3",
"rebelpla.zip Rebel Planet",
"redcoats.zip Red Coats",
"repton.zip",
"repton2.zip Repton 2",
"repton3.zip Repton 3",
"reptonin.zip Repton Infinity",
"reptonti.zip Repton Thru Time",
"reptonwo.zip Repton Around the World in 40 Screens",
"retr2.zip Return of R2",
"reversik.zip Reversi (Kansas)",
"reversis.zip Reversi (Superior Software)",
"revzor.zip Revenge of Zor",
"rhanson.zip Rick Hanson",
"rhansont.zip The Rick Hanson Trilogy",
"ricochet.zip",
"rigattac.zip Rig Attack",
"ringtime.zip Ring of Time",
"robinshw.zip Robin of Sherwood",
"roboto.zip",
"robotron.zip Robotron: 2084",
"rodeogam.zip Buffalo Bills Rodeo Games",
"romanemp.zip Roman Empire",
"rubbletr.zip Rubble Trouble",
"runestaf.zip Runestaff",
"saigon.zip",
"saracoid.zip",
"sascomm.zip SAS Commander",
"savagei1.zip Savage Island Part One",
"savagei2.zip Savage Island Part Two",
"savponds.zip Savage Pond",
"sbelle.zip Southern Belle",
"secrmiss.zip Secret Mission",
"serplair.zip Serpents Lair",
"sfruit.zip Super Fruit",
"shangwar.zip Shanghai Warriors",
"shark.zip",
"sharkatt.zip Shark Attack",
"sharrier.zip Strike Force Harrier",
"shuffle.zip",
"sim.zip",
"simcity.zip Sim City",
"skirmish.zip",
"smashgra.zip Smash and Grab",
"snake.zip",
"snapper.zip",
"snookera.zip Snooker (Acornsoft)",
"snookerv.zip Snooker (Visions)",
"soccersu.zip Soccer Supremo",
"softcent.zip The Soft Centre Collection",
"sorcclay.zip Sorceror of Claymorgue Castle",
"spanisha.zip The Spanish Tutor - Level A",
"spascal.zip S-Pascal (German)",
"spcavern.zip Space Caverns",
"spectape.zip Spectapede",
"spellbin.zip Spellbinder",
"sphdest.zip Sphere of Destiny",
"sphdest2.zip Sphere of Destiny 2",
"sphinx.zip Sphinx Adventure",
"spidermn.zip Spiderman",
"spit40.zip Spitfire 40",
"spkbegin.zip Starter Pack: Beginners",
"spmansid.zip Spaceman Sid",
"spooksv.zip Spooksville",
"spranger.zip Space Ranger",
"spshuttm.zip Space Shuttle",
"spstatal.zip Space Station Alpha",
"spycat.zip",
"spyvsspy.zip Spy vs Spy",
"squeakal.zip Squeakaliser",
"sshipcom.zip Starship Command",
"stairhel.zip Stairway to Hell",
"stardrif.zip Star Drifter",
"starfo7.zip Star Force Seven",
"starmaz2.zip Starmaze 2",
"starport.zip Star Port",
"starseek.zip Star Seeker",
"starwars.zip Star Wars",
"stdsnook.zip Steve Davis Snooker",
"stix.zip",
"stockcar.zip Stock Car",
"stormcyc.zip Stormcycle",
"stranded.zip",
"stratobo.zip Stratobomber",
"strodyss.zip Strange Odyssey",
"strykun.zip Stryker's Run",
"subwayvi.zip Subway Vigilante",
"suprgolf.zip Super Golf",
"suprhang.zip Super Hangman",
"suprpool.zip Super Pool",
"supsocc.zip Superior Soccer",
"survivor.zip",
"swag.zip",
"swoop.zip",
"syncron.zip Syncron (The Superior Collection Vol.3)",
"system8.zip System_8",
"tarzan.zip",
"tarzanb.zip Tarzan Boy",
"tempest.zip",
"tenbest1.zip Ten of the Best! Vol.1",
"tenbest2.zip Ten of the Best! Vol.2",
"tenbest3.zip Ten of the Best! Vol.3",
"tenindia.zip Ten Little Indians",
"tennis.zip",
"tesselat.zip Tesselator",
"thaibox.zip Thai Boxing",
"thebigko.zip The Big KO!",
"thecount.zip The Count",
"themine.zip The Mine",
"thrust.zip",
"time.zip",
"timemach.zip The Time Machine",
"tmatch.zip Test Match",
"trapper.zip",
"treashnt.zip Treasure Hunt",
"treeknow.zip Tree of Knowledge",
"trekii.zip Trek II",
"triple8.zip Triple Decker 8: Grebit, Mr Freeze & Fruit Worm",
"tstruck.zip Thunderstruck",
"tstruck2.zip Thunderstruck 2: Mind Master",
"turtleg.zip Turtle Graphics",
"twelfnig.zip Twelfth Night",
"ukpm.zip U.K. PM",
"ultron.zip",
"uranians.zip",
"usdragr.zip US Drag Racing",
"valley.zip The Valley",
"vcardarc.zip Video Card Arcade",
"videorev.zip Videos Revenge",
"villsoul.zip Village of the Lost Souls",
"vindaloo.zip",
"voodooc.zip Voodoo Castle",
"vortex.zip",
"voxbox.zip Voxbox Demonstration",
"walkplnk.zip Walk the Plank",
"warp1.zip Warp-1",
"waterloo.zip",
"waxworks.zip",
"webwar.zip Web War",
"west.zip",
"wetzone.zip Wet Zone",
"wheelfor.zip Wheel of Fortune",
"where.zip",
"whichsal.zip Which Salt?",
"whimagic.zip White Magic",
"wizardak.zip Wizard of Akyrz",
"wizzym.zip Wizzys Mansion",
"wknigh11.zip White Knight Mk11",
"woftef.zip The Way of the Exploding Fist",
"wolmpia.zip Winter Olmpiad 88",
"wolympic.zip Winter Olympics",
"wongo.zip",
"wordhunt.zip Word Hunt",
"wordseq.zip Word Sequencing",
"wrldgeo.zip World Geography",
"xor.zip",
"xorproc.zip XOR: Procyon's Mazes",
"yc0504.zip Your Computer Vol.5-4",
"yiear.zip Yie Ar Kung-Fu",
"yiear2.zip Yie Ar Kung-Fu 2",
"zalaga.zip",
"zeichenb.zip Zeichenbrett (German)",
"zenon.zip",
"ziggy.zip",
"zkongjun.zip Zany Kong Junior",
"zorakk.zip Zorakk the Conqueror",
]; generateFileLinks("archive:mame-sl/mame-sl/electron_cass.zip", "Acorn_-_Electron");</script>
<h3 id="Flop MAME" data-count="177" class="section-header">Flop MAME</h3>
<script>bgImage("electron")
fileNames = [
"9cardbd1.zip 9 Classic Card and Board Games No.1",
"9cardbd2.zip 9 Classic Card and Board Games No.2",
"abgensnr.zip Answer Back - General Knowledge Senior Quiz",
"acheton.zip",
"adfse00.zip P.R.E.S. ADFS E00",
"alps.zip ALPS - Adventure Language Programming System",
"amxart.zip AMX Art",
"argcreat.zip Arcade Game Creator (5.25")",
"avon.zip",
"baron.zip",
"bbcmusic.zip BBC Music Demo World",
"bonecrun.zip Bone Cruncher",
"classarc.zip Classic Arcade Games",
"classcomp1.zip Classroom Computing Vol.1",
"classcomp2.zip Classroom Computing Vol.2",
"codedro.zip Codename: Droid",
"crazeeri.zip Crazee Rider",
"ctodoomt.zip Countdown to Doom",
"database.zip",
"dfse00.zip Advanced Electron DFS E00",
"dreamtim.zip Dreamtime",
"e2p.zip E2P Operating System (Disk)",
"e2pbasic.zip E2P Hi-Basic",
"ebots.zip Electrobots",
"ebotsgu.zip Electrobots Going Underground",
"egghead.zip Egghead in Space",
"elementum.zip",
"elixir.zip",
"enthar7.zip Enthar Seven",
"eug00.zip Electron User Group #00 (3.5")",
"eug01.zip Electron User Group #01 (3.5")",
"eug02.zip Electron User Group #02 (3.5")",
"eug03.zip Electron User Group #03 (3.5")",
"eug04.zip Electron User Group #04 (3.5")",
"eug05.zip Electron User Group #05 (3.5")",
"eug06.zip Electron User Group #06 (3.5")",
"eug07.zip Electron User Group #07 (3.5")",
"eug08.zip Electron User Group #08 (3.5")",
"eug09.zip Electron User Group #09 (3.5")",
"eug10.zip Electron User Group #10 (3.5")",
"eug11.zip Electron User Group #11 (3.5")",
"eug12.zip Electron User Group #12 (3.5")",
"eug13.zip Electron User Group #13 (3.5")",
"eug14.zip Electron User Group #14 (3.5")",
"eug15.zip Electron User Group #15 (3.5")",
"eug16.zip Electron User Group #16 (3.5")",
"eug17.zip Electron User Group #17 (3.5")",
"eug18.zip Electron User Group #18 (3.5")",
"eug19.zip Electron User Group #19 (3.5")",
"eug20.zip Electron User Group #20 (3.5")",
"eug21.zip Electron User Group #21 (3.5")",
"eug22.zip Electron User Group #22 (3.5")",
"eug23.zip Electron User Group #23 (3.5")",
"eug24.zip Electron User Group #24 (3.5")",
"eug25.zip Electron User Group #25 (3.5")",
"eug26.zip Electron User Group #26 (3.5")",
"eug27.zip Electron User Group #27 (3.5")",
"eug28.zip Electron User Group #28 (3.5")",
"eug29.zip Electron User Group #29 (3.5")",
"eug30.zip Electron User Group #30 (3.5")",
"eug31.zip Electron User Group #31 (3.5")",
"eug32.zip Electron User Group #32 (3.5")",
"eug33.zip Electron User Group #33 (3.5")",
"eug34.zip Electron User Group #34 (3.5")",
"eug35.zip Electron User Group #35 (3.5")",
"eug36.zip Electron User Group #36 (3.5")",
"eug37.zip Electron User Group #37 (3.5")",
"eug38.zip Electron User Group #38 (3.5")",
"eug39.zip Electron User Group #39 (3.5")",
"eug40.zip Electron User Group #40 (3.5")",
"eug41.zip Electron User Group #41 (3.5")",
"eug42.zip Electron User Group #42 (3.5")",
"eug43_44.zip Electron User Group #43/#44 (3.5")",
"eug45.zip Electron User Group #45 (3.5")",
"eug46.zip Electron User Group #46 (3.5")",
"eug47.zip Electron User Group #47 (3.5")",
"eug48.zip Electron User Group #48 (3.5")",
"eug49.zip Electron User Group #49 (3.5")",
"eug50.zip Electron User Group #50 (3.5")",
"eug51.zip Electron User Group #51 (3.5")",
"eug52.zip Electron User Group #52 (3.5")",
"eug53.zip Electron User Group #53 (3.5")",
"eug54.zip Electron User Group #54 (3.5")",
"eug55.zip Electron User Group #55 (3.5")",
"eug56.zip Electron User Group #56 (3.5")",
"eug57.zip Electron User Group #57 (3.5")",
"eug58.zip Electron User Group #58 (3.5")",
"eug59.zip Electron User Group #59 (3.5")",
"eug60.zip Electron User Group #60 (3.5")",
"eug61.zip Electron User Group #61 (3.5")",
"eug62.zip Electron User Group #62 (3.5")",
"eug63.zip Electron User Group #63 (3.5")",
"eug64.zip Electron User Group #64 (3.5")",
"eug65.zip Electron User Group #65 (3.5")",
"eug66.zip Electron User Group #66 (3.5")",
"eug67d.zip Electron User Group #67 (5.25")",
"eug68d.zip Electron User Group #68 (5.25")",
"eug69d.zip Electron User Group #69 (5.25")",
"eug70d.zip Electron User Group #70 (5.25")",
"eug71d.zip Electron User Group #71 (5.25")",
"eug72d.zip Electron User Group #72 (5.25")",
"eug73d.zip Electron User Group #73 (5.25")",
"eug74d.zip Electron User Group #74 (5.25")",
"euser401.zip Electron User Vol.4 No.1 October 1986",
"euser402.zip Electron User Vol.4 No.2 November 1986",
"euser408.zip Electron User Vol.4 No.8 May 1987",
"euser411.zip Electron User Vol.4 No.11 August 1987",
"euser501.zip Electron User Vol.5 No.1 October 1987",
"euser503.zip Electron User Vol.5 No.3 December 1987",
"euser506.zip Electron User Vol.5 No.6 March 1988",
"euser512.zip Electron User Vol.5 No.12 September 1988",
"euser609.zip Electron User Vol.6 No.9 June 1989",
"hardhath.zip Hard Hat Harry",
"hdpd000.zip HeadFirst PD Disk E000/M000/B000",
"hdpd001.zip HeadFirst PD Disk E001/M005/B001",
"hdpd002.zip HeadFirst PD Disk E002/M006/B002",
"hdpd003.zip HeadFirst PD Disk E003",
"hdpd004.zip HeadFirst PD Disk E004",
"hdpd005.zip HeadFirst PD Disk E005",
"hdpd006.zip HeadFirst PD Disk E006",
"hdpd007.zip HeadFirst PD Disk E007",
"hdpd008.zip HeadFirst PD Disk E008",
"hdpd009.zip HeadFirst PD Disk E009",
"hdpd010.zip HeadFirst PD Disk E010/M009/B005",
"hdpd011.zip HeadFirst PD Disk E011",
"hdpd012.zip HeadFirst PD Disk M013/B012",
"hdpd013.zip HeadFirst PD Disk E013",
"hdpd015.zip HeadFirst PD Disk E015/M015/B014",
"hdpd016.zip HeadFirst PD Disk E016/M016/B015",
"hdpd017.zip HeadFirst PD Disk E017",
"hezarin.zip",
"hypervpr.zip Hyper Viper",
"jungle.zip Jungle Journey",
"keyword.zip",
"knitwear.zip Knitwear Designer",
"kohamilt.zip Kingdom of Hamil",
"ldaydoom.zip Last Days of Doom",
"liferept.zip The Life of Repton",
"loderun2021.zip Lode Runner 2021",
"magsword.zip The Magic Sword (5.25")",
"manicm2021.zip Manic Miner 2021",
"mathorv1.zip Maths 'O' Level Revision Part One",
"nursery.zip Nursery Rhymes",
"palmagic.zip Palace of Magic",
"phquestt.zip Philosopher's Quest",
"pias.zip Play It Again Sam (5.25")",
"piratesp.zip Pirate's Peril",
"pl3games.zip Plus 3 Games",
"pl3gamnz.zip Plus 3 Games (New Zealand)",
"presgam1.zip P.R.E.S. Games Disc 1",
"presgam2.zip P.R.E.S. Games Disc 2",
"presgam3.zip P.R.E.S. Games Disc 3",
"presgam4.zip P.R.E.S. Games Disc 4",
"presgam5.zip P.R.E.S. Games Disc 5",
"presgam6.zip P.R.E.S. Games Disc 6",
"python.zip",
"ravenwd.zip The Darkness of Raven Wood",
"repton3.zip Repton 3",
"reptonti.zip Repton Thru Time",
"reptonwo.zip Around the World in 40 Screens",
"retdoom.zip Return to Doom",
"sp64.zip Stop Press 64",
"spellbin.zip Spellbinder",
"spysnatc.zip Spy Snatcher",
"starspell.zip Starspell Dictionary Disk (3.5")",
"stranded.zip Stranded!",
"supcoll3.zip The Superior Collection Vol.3",
"tapper.zip",
"taroda.zip The Taroda Scheme",
"tenbest1.zip Ten of the Best! Vol.1",
"tenbest2.zip Ten of the Best! Vol.2",
"tenbest3.zip Ten of the Best! Vol.3",
"tenbest4.zip Ten of the Best! Vol.4",
"ultprize.zip The Ultimate Prize",
"welcome.zip",
"yap.zip You're Alan Partridge",
"zaor.zip Zombies Ate Our Roadies!",
]; generateFileLinks("archive:mame-sl/mame-sl/electron_flop.zip", "Acorn_-_Electron");</script>
<h3 id="Cart MAME" data-count="33" class="section-header">Cart MAME</h3>
<script>bgImage("electron")
fileNames = [
"abr.zip Advanced Battery-Backed RAM v1.10",
"ap34.zip Advanced Plus 3/4",
"ap5.zip Advanced Plus 5",
"click.zip Click v1.04",
"commstar.zip Commstar E1.12",
"ctodoom.zip Countdown to Doom",
"cumana.zip Cumana Floppy Disc System v1.02",
"demo.zip Electron Demonstration Cartridge",
"elksdp1.zip ElkSD Plus 1",
"hopper.zip",
"lisp.zip",
"logo.zip",
"mgc.zip Mega Games Cartridge",
"pascal.zip ISO-Pascal",
"peg400.zip Pegasus 400 v1.02",
"romp144.zip ROMPlus-144 v3.0",
"seds.zip Slogger Electron Disk System v1.03",
"snapper.zip",
"sndexp.zip Sound Expansion",
"sndexp2.zip Sound Expansion 2.0",
"sndexp3.zip Sound Expansion 3.0",
"sp64.zip Stop Press 64",
"spellview.zip Starspell & View",
"spellword.zip Starspell & Starword",
"sshipcom.zip Starship Command",
"starspell.zip",
"stlefs.zip Solidisk EFS 2.1E",
"stopress.zip Stop Press",
"treeknow.zip Tree of Knowledge",
"tube.zip Acorn Tube Interface (prototype)",
"upurs.zip UPURS 1.0E",
"view.zip",
"vwsheet.zip ViewSheet",
]; generateFileLinks("archive:mame-sl/mame-sl/electron_cart.zip", "Acorn_-_Electron");</script>
<h3 id="ROM MAME" data-count="44" class="section-header">ROM MAME</h3>
<script>bgImage("electron")
fileNames = [
"abep.zip Advanced BASIC Editor Plus v1.00",
"acp.zip Advanced Control Panel v3.01",
"addcomm.zip Addcomm v1.30",
"adi.zip Advanced Disc Investigator v2.00",
"adt.zip Advanced Disc Toolkit v2.00",
"aep.zip Advanced EPROM Programmer v1.00",
"afm.zip Advanced File Manager v1.09",
"ample.zip AMPLE Nucleus ID 60205",
"arm.zip Advanced ROM Manager v1.13",
"art.zip AMX Mouse Support v2.1",
"bedemo.zip Electron BasicEd DEMO",
"bet.zip BASIC Editor & Toolkit v1.00",
"e2p.zip E2P Operating System (ROM)",
"elkman.zip ElkMan v1.5",
"epromprg.zip EPROM Programmer v1.01",
"gommc.zip GoMMC Tools 1.03",
"i2c.zip I2C (4 U) 3.1E",
"matrix.zip",
"mforth83.zip Multi-Forth 83",
"mode7mk2.zip Mode 7 Mk2 v2.2",
"mode7sim.zip Mode 7 Simulator v1.5",
"pdg.zip StarWord: Printer Driver Generator",
"pluscom.zip Pluscom Plus v2.0",
"printer.zip Printer ROM v1.00",
"ramtest.zip Electron RAM Test",
"stargrph.zip StarGraph v3.01",
"starmon.zip StarMon v1.20b",
"starspell.zip",
"starstor.zip StarStore v1.00",
"starstor2.zip StarStore II v2.04",
"starword.zip StarWord v1.01",
"stopress.zip AMX Stop Press",
"t2c3.zip T2C3 v1.00",
"t2cu.zip T2CU v2.01",
"t2p3.zip T2P3 v2.02",
"t2p4.zip T2P4 v2.02",
"t2peg400.zip T2PEG400 v2.02",
"t2sd.zip T2SD v2.01",
"t2sedfs.zip T2SEDFS v2.02",
"timetndr.zip Time-Tender",
"trek.zip StarTrek v1.07",
"utility.zip Utility v1.4",
"wordpwr.zip WordPower v0.4",
"xbasic.zip XBasic B.E",
]; generateFileLinks("archive:mame-sl/mame-sl/electron_rom.zip", "Acorn_-_Electron");</script>
<script src="script.js"></script>