-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathaddons_le_generic.xml
More file actions
5225 lines (5225 loc) · 295 KB
/
addons_le_generic.xml
File metadata and controls
5225 lines (5225 loc) · 295 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='UTF-8'?>
<addons>
<addon id="game.libretro.yabasanshiro_libretro_buildbot" name="Sega - Saturn (YabaSanshiro)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.saturn.mission.stick"/>
<import addon="game.controller.saturn.arcade.racer"/>
<import addon="game.controller.saturn.twin.stick"/>
<import addon="game.controller.saturn"/>
<import addon="game.controller.saturn.3d"/>
<import addon="game.controller.saturn.mouse"/>
<import addon="game.controller.saturn.mission.sticks"/>
<import addon="game.controller.saturn.virtua.gun"/>
</requires>
<extension point="kodi.gameclient" library_linux="yabasanshiro_libretro.so">
<platforms>Saturn</platforms>
<extensions>bin|ccd|chd|cue|iso|mds|zip</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sega - Saturn (YabaSanshiro)</summary>
<description lang="en_GB">Emulator for Saturn by Guillaume Duhammel|Theo Berkau|Anders Montonen|devmiyax[CR]Supported files: bin|ccd|chd|cue|iso|mds|zip[CR][CR]Game Addon Notes: (!) saturn_bios.bin (md5): af5828fdff51384f99b3c4926be27762|Homepage : http://www.uoyabause.org/[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/yabasanshiro_libretro.so.zip</source>
<news>Built from libretro buildbot commit 68ecf735 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>750082</size>
<path>linux_le_generic/game.libretro.yabasanshiro_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.skyemu_libretro_buildbot" name="Nintendo - Game Boy/GBA/NDS (SkyEmu)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="skyemu_libretro.so">
<platforms/>
<extensions>gb|gbx|gba|nds</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - Game Boy/GBA/NDS (SkyEmu)</summary>
<description lang="en_GB">Emulator for None by Team SkyEmu[CR]Supported files: gb|gbx|gba|nds</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/skyemu_libretro.so.zip</source>
<news>Built from libretro buildbot commit 236f6a1e (2026-02-27)</news>
<assets/>
<size>326806</size>
<path>linux_le_generic/game.libretro.skyemu_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.gearboy_libretro_buildbot" name="Nintendo - Game Boy / Color (Gearboy)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="gearboy_libretro.so">
<platforms>Game Boy/Game Boy Color</platforms>
<extensions>gb|dmg|gbc|cgb|sgb</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - Game Boy / Color (Gearboy)</summary>
<description lang="en_GB">Emulator for Game Boy/Game Boy Color by Nacho Sanchez[CR]Supported files: gb|dmg|gbc|cgb|sgb[CR][CR]Game Addon Notes: (!) dmg_boot.bin (md5): 32fbbd84168d3482956eb3c5051637f5|(!) cgb_boot.bin (md5): dbfce9db9deaa2567f6a84fde55f9680</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/gearboy_libretro.so.zip</source>
<news>Built from libretro buildbot commit 2dec0d66 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>246839</size>
<path>linux_le_generic/game.libretro.gearboy_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.mednafen_supergrafx_libretro_buildbot" name="NEC - PC Engine SuperGrafx (Beetle SuperGrafx)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.pce"/>
</requires>
<extension point="kodi.gameclient" library_linux="mednafen_supergrafx_libretro.so">
<platforms>PC Engine SuperGrafx</platforms>
<extensions>pce|sgx|cue|ccd|chd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">NEC - PC Engine SuperGrafx (Beetle SuperGrafx)</summary>
<description lang="en_GB">Emulator for PC Engine SuperGrafx by Mednafen Team[CR]Supported files: pce|sgx|cue|ccd|chd[CR][CR]Game Addon Notes: (!) syscard3.pce (md5): 38179df8f4ac870017db21ebcbf53114</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mednafen_supergrafx_libretro.so.zip</source>
<news>Built from libretro buildbot commit ae907399 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>622536</size>
<path>linux_le_generic/game.libretro.mednafen_supergrafx_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.jollycv_libretro_buildbot" name="ColecoVision/CreatiVision/My Vision (JollyCV)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="jollycv_libretro.so">
<platforms>ColecoVision/CreatiVision/My Vision</platforms>
<extensions>col|rom|myv|bin</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">ColecoVision/CreatiVision/My Vision (JollyCV)</summary>
<description lang="en_GB">Emulator for ColecoVision/CreatiVision/My Vision by Rupert Carmichael[CR]Supported files: col|rom|myv|bin</description>
<license>BSD-3-Clause, MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/jollycv_libretro.so.zip</source>
<news>Built from libretro buildbot commit 0a3734e0 (2026-02-27)</news>
<assets/>
<size>67482</size>
<path>linux_le_generic/game.libretro.jollycv_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.openlara_libretro_buildbot" name="Tomb Raider (OpenLara)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="openlara_libretro.so">
<platforms>Classic Tomb Raider engine</platforms>
<extensions>phd|psx|tr2</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Tomb Raider (OpenLara)</summary>
<description lang="en_GB">Game for Classic Tomb Raider engine by XProger[CR]Supported files: phd|psx|tr2</description>
<license>2-clause BSD</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/openlara_libretro.so.zip</source>
<news>Built from libretro buildbot commit 30bba45a (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>852479</size>
<path>linux_le_generic/game.libretro.openlara_libretro_buildbot-1.2026.20511.zip</path>
<broken>Not yet compatible</broken>
</extension>
</addon>
<addon id="game.libretro.nekop2_libretro_buildbot" name="NEC - PC-98 (Neko Project II)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.joystick.4button"/>
<import addon="game.controller.joystick.2button"/>
<import addon="game.controller.keyboard"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.gravis.gamepad"/>
</requires>
<extension point="kodi.gameclient" library_linux="nekop2_libretro.so">
<platforms>PC-98</platforms>
<extensions>d98|zip|98d|fdi|fdd|2hd|tfd|d88|88d|hdm|xdf|dup|cmd|hdi|thd|nhd|hdd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">NEC - PC-98 (Neko Project II)</summary>
<description lang="en_GB">Emulator for PC-98 by Neko Project II Team[CR]Supported files: d98|zip|98d|fdi|fdd|2hd|tfd|d88|88d|hdm|xdf|dup|cmd|hdi|thd|nhd|hdd</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/nekop2_libretro.so.zip</source>
<news>Built from libretro buildbot commit 68f6674e (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>568086</size>
<path>linux_le_generic/game.libretro.nekop2_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.vaporspec_libretro_buildbot" name="VaporSpec" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="vaporspec_libretro.so">
<platforms>VaporSpec</platforms>
<extensions>vaporbin</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">VaporSpec</summary>
<description lang="en_GB">Emulator for VaporSpec by Will Smith|Vladimir Serbinenko[CR]Supported files: vaporbin</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/vaporspec_libretro.so.zip</source>
<news>Built from libretro buildbot commit 6e539379 (2026-02-27)</news>
<assets/>
<size>21808</size>
<path>linux_le_generic/game.libretro.vaporspec_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.crocods_libretro_buildbot" name="Amstrad - CPC (CrocoDS)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="crocods_libretro.so">
<platforms>CPC</platforms>
<extensions>dsk|sna|kcr</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Amstrad - CPC (CrocoDS)</summary>
<description lang="en_GB">Emulator for CPC by RedBug[CR]Supported files: dsk|sna|kcr</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/crocods_libretro.so.zip</source>
<news>Built from libretro buildbot commit e3a73d3c (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>307637</size>
<path>linux_le_generic/game.libretro.crocods_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.dosbox_core_libretro_buildbot" name="DOS (DOSBox-core)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.joystick.4button"/>
<import addon="game.controller.joystick.2button"/>
<import addon="game.controller.keyboard"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.gravis.gamepad"/>
</requires>
<extension point="kodi.gameclient" library_linux="dosbox_core_libretro.so">
<platforms>DOS</platforms>
<extensions>exe|com|bat|conf|cue|iso|img|/</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">DOS (DOSBox-core)</summary>
<description lang="en_GB">Emulator for DOS by DOSBox Team|radius|Nikos Chantziaras[CR]Supported files: exe|com|bat|conf|cue|iso|img|/[CR][CR]Game Addon Notes: (!) MT32_CONTROL.ROM (md5): 5626206284b22c2734f3e9efefcd2675|(!) MT32_PCM.ROM (md5): 89e42e386e82e0cacb4a2704a03706ca|(!) CM32L_CONTROL.ROM (md5): bfff32b6144c1d706109accb6e6b1113|(!) CM32L_PCM.ROM (md5): 08cdcfa0ed93e9cb16afa76e6ac5f0a4|(!) libbass.so|(!) libbassmidi.so|(!) bass.dll|(!) bassmidi.dll|(!) libbass.dylib|(!) libbassmidi.dylib</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/dosbox_core_libretro.so.zip</source>
<news>Built from libretro buildbot commit 49e56a9f (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>3473551</size>
<path>linux_le_generic/game.libretro.dosbox_core_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.mednafen_psx_libretro_buildbot" name="Sony - PlayStation (Beetle PSX)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.ps.guncon.japan"/>
<import addon="game.controller.ps.mouse"/>
<import addon="game.controller.ps.dualshock"/>
<import addon="game.controller.ps.gamepad"/>
<import addon="game.controller.ps.dualanalog"/>
<import addon="game.controller.konami.justifier.ps"/>
<import addon="game.controller.konami.justifier.player2"/>
<import addon="game.controller.ps.guncon.western"/>
</requires>
<extension point="kodi.gameclient" library_linux="mednafen_psx_libretro.so">
<platforms>PlayStation</platforms>
<extensions>cue|toc|m3u|ccd|exe|pbp|chd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sony - PlayStation (Beetle PSX)</summary>
<description lang="en_GB">Emulator for PlayStation by Mednafen Team[CR]Supported files: cue|toc|m3u|ccd|exe|pbp|chd[CR][CR]Game Addon Notes: (!) scph5500.bin (md5): 8dd7d5296a650fac7319bce665a6a53c|(!) scph5501.bin (md5): 490f666e1afb15b7362b406ed1cea246|(!) scph5502.bin (md5): 32736f17079d0b2b7024407c39bd3050|(!) psxonpsp660.bin (md5): c53ca5908936d412331790f4426c6c33|(!) ps1_rom.bin (md5): 81bbe60ba7a3d1cea1d48c14cbcc647b[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mednafen_psx_libretro.so.zip</source>
<news>Built from libretro buildbot commit 8357dd7c (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1559518</size>
<path>linux_le_generic/game.libretro.mednafen_psx_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.tgbdual_libretro_buildbot" name="Nintendo - Game Boy / Color (TGB Dual)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.gameboy"/>
</requires>
<extension point="kodi.gameclient" library_linux="tgbdual_libretro.so">
<platforms>Game Boy/Game Boy Color</platforms>
<extensions>cgb|dmg|gb|gbc|sgb</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - Game Boy / Color (TGB Dual)</summary>
<description lang="en_GB">Emulator for Game Boy/Game Boy Color by GIGO|Hii[CR]Supported files: cgb|dmg|gb|gbc|sgb</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/tgbdual_libretro.so.zip</source>
<news>Built from libretro buildbot commit 1f82362e (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>146928</size>
<path>linux_le_generic/game.libretro.tgbdual_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.wasm4_libretro_buildbot" name="WASM-4" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="wasm4_libretro.so">
<platforms>WASM-4</platforms>
<extensions>wasm</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">WASM-4</summary>
<description lang="en_GB">Game engine for WASM-4 by Bruno Garcia[CR]Supported files: wasm[CR][CR]Game Addon Notes: (!) Homepage: https://wasm4.org</description>
<license>ISC</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/wasm4_libretro.so.zip</source>
<news>Built from libretro buildbot commit 29c3224c (2026-02-27)</news>
<assets/>
<size>76579</size>
<path>linux_le_generic/game.libretro.wasm4_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.vice_x128_libretro_buildbot" name="Commodore - C128 (VICE x128)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.keyboard"/>
</requires>
<extension point="kodi.gameclient" library_linux="vice_x128_libretro.so">
<platforms>C128</platforms>
<extensions>d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m|/</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Commodore - C128 (VICE x128)</summary>
<description lang="en_GB">Emulator for C128 by VICE Team[CR]Supported files: d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m|/[CR][CR]Game Addon Notes: (!) JiffyDOS_C128.bin (md5): cbbd1bbcb5e4fd8046b6030ab71fc021|(!) JiffyDOS_C64.bin (md5): be09394f0576cf81fa8bacf634daf9a2|(!) JiffyDOS_1541-II.bin (md5): 1b1e985ea5325a1f46eb7fd9681707bf|(!) JiffyDOS_1571_repl310654.bin (md5): 41c6cc528e9515ffd0ed9b180f8467c0|(!) JiffyDOS_1581.bin (md5): 20b6885c6dc2d42c38754a365b043d71</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/vice_x128_libretro.so.zip</source>
<news>Built from libretro buildbot commit 43a6bea8 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1552910</size>
<path>linux_le_generic/game.libretro.vice_x128_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.swanstation_libretro_buildbot" name="Sony - PlayStation (SwanStation)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="swanstation_libretro.so">
<platforms>PlayStation</platforms>
<extensions>exe|psexe|cue|bin|img|iso|chd|pbp|ecm|mds|psf|m3u</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sony - PlayStation (SwanStation)</summary>
<description lang="en_GB">Emulator for PlayStation by stenzek[CR]Supported files: exe|psexe|cue|bin|img|iso|chd|pbp|ecm|mds|psf|m3u[CR][CR]Game Addon Notes: (!) psxonpsp660.bin (md5): c53ca5908936d412331790f4426c6c33|(!) scph5500.bin (md5): 8dd7d5296a650fac7319bce665a6a53c|(!) scph5501.bin (md5): 490f666e1afb15b7362b406ed1cea246|(!) scph5502.bin (md5): 32736f17079d0b2b7024407c39bd3050||(!) ps1_rom.bin (md5): 81bbe60ba7a3d1cea1d48c14cbcc647b| This core also supports No-Intro BIOS images.</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/swanstation_libretro.so.zip</source>
<news>Built from libretro buildbot commit febd8f30 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1726360</size>
<path>linux_le_generic/game.libretro.swanstation_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.genesis_plus_gx_wide_libretro_buildbot" name="Sega - MS/GG/MD/CD (Genesis Plus GX Wide)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.genesis.mouse"/>
<import addon="game.controller.genesis.6button"/>
</requires>
<extension point="kodi.gameclient" library_linux="genesis_plus_gx_wide_libretro.so">
<platforms>Sega 8/16-bit (Various)</platforms>
<extensions>mdx|md|smd|gen|bin|cue|iso|sms|bms|gg|sg|68k|sgd|chd|m3u</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sega - MS/GG/MD/CD (Genesis Plus GX Wide)</summary>
<description lang="en_GB">Emulator for Sega 8/16-bit (Various) by Charles McDonald|Eke-Eke|heyjoeway[CR]Supported files: mdx|md|smd|gen|bin|cue|iso|sms|bms|gg|sg|68k|sgd|chd|m3u[CR][CR]Game Addon Notes: (!) sk2chip.bin (md5): b4e76e416b887f4e7413ba76fa735f16|(!) sk.bin (md5): 4ea493ea4e9f6c9ebfccbdb15110367e</description>
<license>Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/genesis_plus_gx_wide_libretro.so.zip</source>
<news>Built from libretro buildbot commit e3694835 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1273776</size>
<path>linux_le_generic/game.libretro.genesis_plus_gx_wide_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.mojozork_libretro_buildbot" name="Infocom Z-Machine (MojoZork)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.joystick.4button"/>
<import addon="game.controller.joystick.2button"/>
<import addon="game.controller.keyboard"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.gravis.gamepad"/>
</requires>
<extension point="kodi.gameclient" library_linux="mojozork_libretro.so">
<platforms>Z-Machine</platforms>
<extensions>dat|z1|z3</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Infocom Z-Machine (MojoZork)</summary>
<description lang="en_GB">Emulator for Z-Machine by Ryan C. Gordon[CR]Supported files: dat|z1|z3[CR][CR]Game Addon Notes: MojoZork plays Infocom Z-Machine games up to version 3, which is most, but not all, of Infocom's catalog.</description>
<license>zlib</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mojozork_libretro.so.zip</source>
<news>Built from libretro buildbot commit cc1ab9c2 (2026-02-27)</news>
<assets/>
<size>54509</size>
<path>linux_le_generic/game.libretro.mojozork_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.flycast_libretro_buildbot" name="Sega - Dreamcast/Naomi (Flycast)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.dreamcast"/>
</requires>
<extension point="kodi.gameclient" library_linux="flycast_libretro.so">
<platforms>Sega Dreamcast</platforms>
<extensions>chd|cdi|elf|bin|cue|gdi|lst|zip|dat|7z|m3u</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sega - Dreamcast/Naomi (Flycast)</summary>
<description lang="en_GB">Emulator for Sega Dreamcast by flyinghead[CR]Supported files: chd|cdi|elf|bin|cue|gdi|lst|zip|dat|7z|m3u[CR][CR]Game Addon Notes: (!) dc_boot.bin (md5): e10c53c2f8b90bab96ead2d368858623</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/flycast_libretro.so.zip</source>
<news>Built from libretro buildbot commit a5c0fe54 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>6251908</size>
<path>linux_le_generic/game.libretro.flycast_libretro_buildbot-1.2026.20511.zip</path>
<broken>Not yet compatible</broken>
</extension>
</addon>
<addon id="game.libretro.mesen-s_libretro_buildbot" name="Nintendo - SNES / SFC / Game Boy / Color (Mesen-S)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="mesen-s_libretro.so">
<platforms>Super Nintendo Entertainment System / Game Boy / Game Boy Color</platforms>
<extensions>sfc|smc|fig|swc|bs|gb|gbc</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - SNES / SFC / Game Boy / Color (Mesen-S)</summary>
<description lang="en_GB">Emulator for Super Nintendo Entertainment System / Game Boy / Game Boy Color by M. Bibaud (aka Sour)[CR]Supported files: sfc|smc|fig|swc|bs|gb|gbc</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mesen-s_libretro.so.zip</source>
<news>Built from libretro buildbot commit 031ad837 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1134823</size>
<path>linux_le_generic/game.libretro.mesen-s_libretro_buildbot-1.2026.20511.zip</path>
<broken>Not yet compatible</broken>
</extension>
</addon>
<addon id="game.libretro.fuse_libretro_buildbot" name="Sinclair - ZX Spectrum (Fuse)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.atari.2600"/>
<import addon="game.controller.keyboard"/>
</requires>
<extension point="kodi.gameclient" library_linux="fuse_libretro.so">
<platforms>ZX Spectrum (various)</platforms>
<extensions>tzx|tap|z80|rzx|scl|trd|dsk|dck|sna|szx|zip</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Sinclair - ZX Spectrum (Fuse)</summary>
<description lang="en_GB">Emulator for ZX Spectrum (various) by Team Fuse[CR]Supported files: tzx|tap|z80|rzx|scl|trd|dsk|dck|sna|szx|zip[CR][CR]Game Addon Notes: [1] Amstrad have kindly given their permission for the redistribution|[^] of their copyrighted material but retain that copyright.</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/fuse_libretro.so.zip</source>
<news>Built from libretro buildbot commit a04daa7d (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>936741</size>
<path>linux_le_generic/game.libretro.fuse_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.doukutsu_rs_libretro_buildbot" name="Cave Story (drs)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="doukutsu_rs_libretro.so">
<platforms>Cave Story Game Engine</platforms>
<extensions>exe|dll|so</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Cave Story (drs)</summary>
<description lang="en_GB">Game for Cave Story Game Engine by Alula|Dr. Glaucous[CR]Supported files: exe|dll|so[CR][CR]Game Addon Notes: (!) drs requires data ROM 'Cave Story (en).zip'.|(!) Load Content 'Doukutsu.exe', Also works with all other ports of CS</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/doukutsu_rs_libretro.so.zip</source>
<news>Built from libretro buildbot commit 96b405bd (2026-02-27)</news>
<assets/>
<size>2377242</size>
<path>linux_le_generic/game.libretro.doukutsu_rs_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.fbneo_libretro_buildbot" name="Arcade (FinalBurn Neo)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="fbneo_libretro.so">
<platforms>Arcade (various)</platforms>
<extensions>zip|7z|cue|ccd</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Arcade (FinalBurn Neo)</summary>
<description lang="en_GB">Emulator for Arcade (various) by Team FBNeo[CR]Supported files: zip|7z|cue|ccd[CR][CR]Game Addon Notes: (!) The BIOS files can also be inside the ROM directory or the root of SYSTEM directory.|(!) Homepage : https://neo-source.com/</description>
<license>Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/fbneo_libretro.so.zip</source>
<news>Built from libretro buildbot commit 08a78e46 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>18810710</size>
<path>linux_le_generic/game.libretro.fbneo_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.bsnes_libretro_buildbot" name="Nintendo - SNES / SFC (bsnes)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.snes"/>
</requires>
<extension point="kodi.gameclient" library_linux="bsnes_libretro.so">
<platforms>Super Nintendo Entertainment System</platforms>
<extensions>smc|sfc|swc|fig|gb|gbc|bs</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - SNES / SFC (bsnes)</summary>
<description lang="en_GB">Emulator for Super Nintendo Entertainment System by Near[CR]Supported files: smc|sfc|swc|fig|gb|gbc|bs[CR][CR]Game Addon Notes: [1] bsnes uses split ROMS for special chip games.|[*] Notable DSP1/DSP1B Games: Super Mario Kart, Pilotwings|[*] Notable DSP2 Games: Dungeon Master|[*] Notable DSP3 Games: SD Gundam GX|[*] Notable DSP4 Games: Top Gear 3000|[*] Notable Cx4 Games: Mega Man X2, Mega Man X3|[2] SGB Emulation needs No-Intro Super Game Boy ROMs renamed to SGB1.sfc or SGB2.sfc|(!) SGB1.sfc (md5): b15ddb15721c657d82c5bab6db982ee9|(!) SGB2.sfc (md5): 8ecd73eb4edf7ed7e81aef1be80031d5|[3] To start BS-X games from the RPG-like interface, go back into the house and select the 1st option.|(!) BS-X.bin (md5): fed4d8242cfbed61343d53d48432aced</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/bsnes_libretro.so.zip</source>
<news>Built from libretro buildbot commit d49e47d8 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1071975</size>
<path>linux_le_generic/game.libretro.bsnes_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.jumpnbump_libretro_buildbot" name="Jump 'n Bump" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="jumpnbump_libretro.so">
<platforms/>
<extensions>dat</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Jump 'n Bump</summary>
<description lang="en_GB">Game engine for jumpnbump by Philippe Simons[CR]Supported files: dat</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/jumpnbump_libretro.so.zip</source>
<news>Built from libretro buildbot commit df847277 (2026-02-27)</news>
<assets/>
<size>54105</size>
<path>linux_le_generic/game.libretro.jumpnbump_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.vitaquake2-rogue_libretro_buildbot" name="Quake II - Ground Zero (vitaQuake 2 [Rogue])" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="vitaquake2-rogue_libretro.so">
<platforms>Quake II Game Engine</platforms>
<extensions>pak</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Quake II - Ground Zero (vitaQuake 2 [Rogue])</summary>
<description lang="en_GB">Game for Quake II Game Engine by Rinnegatamante[CR]Supported files: pak</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/vitaquake2-rogue_libretro.so.zip</source>
<news>Built from libretro buildbot commit 246e63ed (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>965854</size>
<path>linux_le_generic/game.libretro.vitaquake2-rogue_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.gambatte_libretro_buildbot" name="Nintendo - Game Boy / Color (Gambatte)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.gameboy"/>
</requires>
<extension point="kodi.gameclient" library_linux="gambatte_libretro.so">
<platforms>Game Boy/Game Boy Color</platforms>
<extensions>gb|gbc|dmg</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - Game Boy / Color (Gambatte)</summary>
<description lang="en_GB">Emulator for Game Boy/Game Boy Color by Sinamas[CR]Supported files: gb|gbc|dmg[CR][CR]Game Addon Notes: (!) gb_bios.bin (md5): 32fbbd84168d3482956eb3c5051637f5|(!) gbc_bios.bin (md5): dbfce9db9deaa2567f6a84fde55f9680</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/gambatte_libretro.so.zip</source>
<news>Built from libretro buildbot commit 2a429c28 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>602696</size>
<path>linux_le_generic/game.libretro.gambatte_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.mu_libretro_buildbot" name="Palm OS (Mu)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.joystick.4button"/>
<import addon="game.controller.joystick.2button"/>
<import addon="game.controller.keyboard"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.gravis.gamepad"/>
</requires>
<extension point="kodi.gameclient" library_linux="mu_libretro.so">
<platforms>Palm OS</platforms>
<extensions>prc|pqa|img|pdb|zip</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Palm OS (Mu)</summary>
<description lang="en_GB">Emulator for Palm OS by guicrith / meepingsnesroms; Stephanie Gawroriski (Xer Shadow Tail)[CR]Supported files: prc|pqa|img|pdb|zip[CR][CR]BIOS files are required for this core to function correctly</description>
<license>CC BY-NC 3.0 US (Non-commercial)</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mu_libretro.so.zip</source>
<news>Built from libretro buildbot commit 6ab8cf86 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>264111</size>
<path>linux_le_generic/game.libretro.mu_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.freeintv_libretro_buildbot" name="Mattel - Intellivision (FreeIntv)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="freeintv_libretro.so">
<platforms>Intellivision</platforms>
<extensions>int|bin|rom</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Mattel - Intellivision (FreeIntv)</summary>
<description lang="en_GB">Emulator for Intellivision by David Richardson[CR]Supported files: int|bin|rom[CR][CR]Game Addon Notes: (!) exec.bin (md5): 62e761035cb657903761800f4437b8af|(!) grom.bin (md5): 0cd5946c6473e42e8e4c2137785e427f[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/freeintv_libretro.so.zip</source>
<news>Built from libretro buildbot commit 4e4682e6 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>612559</size>
<path>linux_le_generic/game.libretro.freeintv_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.same_cdi_libretro_buildbot" name="Philips - CDi (SAME CDi)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="same_cdi_libretro.so">
<platforms>CD-i</platforms>
<extensions>chd|iso|cue</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Philips - CDi (SAME CDi)</summary>
<description lang="en_GB">Emulator for CD-i by MAMEdev[CR]Supported files: chd|iso|cue[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv2+</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/same_cdi_libretro.so.zip</source>
<news>Built from libretro buildbot commit b0cd8ec6 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>8863414</size>
<path>linux_le_generic/game.libretro.same_cdi_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.gearlynx_libretro_buildbot" name="Atari - Lynx (GearLynx)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="gearlynx_libretro.so">
<platforms>Lynx</platforms>
<extensions>lnx|lyx|o</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Atari - Lynx (GearLynx)</summary>
<description lang="en_GB">Emulator for Lynx by Nacho Sanchez[CR]Supported files: lnx|lyx|o[CR][CR]Game Addon Notes: (!) lynxboot.img (md5): fcd403db69f54290b51035d82f835e7b[CR][CR]BIOS files are required for this core to function correctly</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/gearlynx_libretro.so.zip</source>
<news>Built from libretro buildbot commit 99bea8b4 (2026-02-27)</news>
<assets/>
<size>141212</size>
<path>linux_le_generic/game.libretro.gearlynx_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.bsnes-jg_libretro_buildbot" name="Nintendo - SNES / SFC (bsnes-jg)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="bsnes-jg_libretro.so">
<platforms>Super Nintendo Entertainment System</platforms>
<extensions>smc|sfc|st|gb|gbc|bs</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - SNES / SFC (bsnes-jg)</summary>
<description lang="en_GB">Emulator for Super Nintendo Entertainment System by Near|Rupert Carmichael[CR]Supported files: smc|sfc|st|gb|gbc|bs</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/bsnes-jg_libretro.so.zip</source>
<news>Built from libretro buildbot commit ee0dcb80 (2026-02-27)</news>
<assets/>
<size>1996302</size>
<path>linux_le_generic/game.libretro.bsnes-jg_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.mame2003_plus_libretro_buildbot" name="Arcade (MAME 2003-Plus)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="mame2003_plus_libretro.so">
<platforms>Arcade (various)</platforms>
<extensions>zip</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Arcade (MAME 2003-Plus)</summary>
<description lang="en_GB">Emulator for Arcade (various) by MAMEdev, MAME 2003-Plus Team, et al (see license and changelog)[CR]Supported files: zip[CR][CR]Game Addon Notes: (!) Unless using Full Non-Merged romsets, BIOS files must be inside the ROM directory.|See libretro core documentation for more information about content paths.|</description>
<license>MAME Noncommercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mame2003_plus_libretro.so.zip</source>
<news>Built from libretro buildbot commit cdd2deb2 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>9417798</size>
<path>linux_le_generic/game.libretro.mame2003_plus_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.panda3ds_libretro_buildbot" name="Nintendo - 3DS (Panda3DS)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="panda3ds_libretro.so">
<platforms>3DS</platforms>
<extensions>3ds|3dsx|elf|axf|cci|cxi|app</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - 3DS (Panda3DS)</summary>
<description lang="en_GB">Emulator for 3DS by Panda3DS Authors (tm)[CR]Supported files: 3ds|3dsx|elf|axf|cci|cxi|app</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/panda3ds_libretro.so.zip</source>
<news>Built from libretro buildbot commit 36779cf6 (2026-02-27)</news>
<assets/>
<size>5282154</size>
<path>linux_le_generic/game.libretro.panda3ds_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.vice_x64_libretro_buildbot" name="Commodore - C64 (VICE x64, fast)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
<import addon="game.controller.mouse"/>
<import addon="game.controller.keyboard"/>
</requires>
<extension point="kodi.gameclient" library_linux="vice_x64_libretro.so">
<platforms>C64</platforms>
<extensions>d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m|/</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Commodore - C64 (VICE x64, fast)</summary>
<description lang="en_GB">Emulator for C64 by VICE Team[CR]Supported files: d64|d71|d80|d81|d82|g64|g41|x64|t64|tap|prg|p00|crt|bin|zip|gz|d6z|d7z|d8z|g6z|g4z|x6z|cmd|m3u|vfl|vsf|nib|nbz|d2m|d4m|/[CR][CR]Game Addon Notes: (!) JiffyDOS_C64.bin (md5): be09394f0576cf81fa8bacf634daf9a2|(!) JiffyDOS_1541-II.bin (md5): 1b1e985ea5325a1f46eb7fd9681707bf|(!) JiffyDOS_1571_repl310654.bin (md5): 41c6cc528e9515ffd0ed9b180f8467c0|(!) JiffyDOS_1581.bin (md5): 20b6885c6dc2d42c38754a365b043d71</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/vice_x64_libretro.so.zip</source>
<news>Built from libretro buildbot commit 176de588 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>1405148</size>
<path>linux_le_generic/game.libretro.vice_x64_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.romcleaner_libretro_buildbot" name="ROM Cleaner" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="romcleaner_libretro.so">
<platforms/>
<extensions>sfc|smc|st|swc|bs|cgb|dmg|gb|gbc|sgb|a52|nes|3ds|3dsx|cart|rom|sms|bms|int|col|cv|md|mdx|smd|gen|gg|sg|gba|nds|lnx|lyx|pce|sgx|ws|wsc|vb|vboy|n64|z64|v64|vec</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">ROM Cleaner</summary>
<description lang="en_GB">Utility for None by Jesse Talavera[CR]Supported files: sfc|smc|st|swc|bs|cgb|dmg|gb|gbc|sgb|a52|nes|3ds|3dsx|cart|rom|sms|bms|int|col|cv|md|mdx|smd|gen|gg|sg|gba|nds|lnx|lyx|pce|sgx|ws|wsc|vb|vboy|n64|z64|v64|vec</description>
<license>MIT</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/romcleaner_libretro.so.zip</source>
<news>Built from libretro buildbot commit 68b77665 (2026-02-27)</news>
<assets/>
<size>479250</size>
<path>linux_le_generic/game.libretro.romcleaner_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.galaksija_libretro_buildbot" name="Elektronika Inženjering - Galaksija (Galaksija)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
</requires>
<extension point="kodi.gameclient" library_linux="galaksija_libretro.so">
<platforms/>
<extensions>gal</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>true</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Elektronika Inženjering - Galaksija (Galaksija)</summary>
<description lang="en_GB">Emulator for None by nikp123[CR]Supported files: gal</description>
<license>Public Domain</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/galaksija_libretro.so.zip</source>
<news>Built from libretro buildbot commit 1ee33af3 (2026-02-27)</news>
<assets/>
<size>93715</size>
<path>linux_le_generic/game.libretro.galaksija_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.mednafen_gba_libretro_buildbot" name="Nintendo - Game Boy Advance (Beetle GBA)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.gba"/>
</requires>
<extension point="kodi.gameclient" library_linux="mednafen_gba_libretro.so">
<platforms>Game Boy Advance</platforms>
<extensions>gba|agb|bin</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - Game Boy Advance (Beetle GBA)</summary>
<description lang="en_GB">Emulator for Game Boy Advance by Forgotten|Mednafen Team[CR]Supported files: gba|agb|bin[CR][CR]Game Addon Notes: (!) gba_bios.bin (md5): a860e8c0b6d573d191e4ec7db1b1e4f6</description>
<license>GPLv2</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/mednafen_gba_libretro.so.zip</source>
<news>Built from libretro buildbot commit 8b80f6c2 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>329327</size>
<path>linux_le_generic/game.libretro.mednafen_gba_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.bsnes_mercury_balanced_libretro_buildbot" name="Nintendo - SNES / SFC (bsnes-mercury Balanced)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.snes.mouse"/>
<import addon="game.controller.snes.super.scope"/>
<import addon="game.controller.snes"/>
<import addon="game.controller.konami.justifier.snes"/>
<import addon="game.controller.konami.justifier.player2"/>
</requires>
<extension point="kodi.gameclient" library_linux="bsnes_mercury_balanced_libretro.so">
<platforms>Super Nintendo Entertainment System</platforms>
<extensions>sfc|smc|bml|gb|gbc|st|bs</extensions>
<supports_vfs>true</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Nintendo - SNES / SFC (bsnes-mercury Balanced)</summary>
<description lang="en_GB">Emulator for Super Nintendo Entertainment System by Near|Alcaro[CR]Supported files: sfc|smc|bml|gb|gbc|st|bs[CR][CR]Game Addon Notes: [1] bsnes-mercury Balanced uses split ROMS for special chip games.|[*] Notable DSP1/DSP1B Games: Super Mario Kart, Pilotwings|[*] Notable DSP2 Games: Dungeon Master|[*] Notable DSP3 Games: SD Gundam GX|[*] Notable DSP4 Games: Top Gear 3000|[*] Notable Cx4 Games: Mega Man X2, Mega Man X3|[2] SGB Emulation will only work with command line.</description>
<license>GPLv3</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/bsnes_mercury_balanced_libretro.so.zip</source>
<news>Built from libretro buildbot commit 03cfe9c2 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<size>665409</size>
<path>linux_le_generic/game.libretro.bsnes_mercury_balanced_libretro_buildbot-1.2026.20511.zip</path>
</extension>
</addon>
<addon id="game.libretro.fbalpha2012_neogeo_libretro_buildbot" name="Arcade (FB Alpha 2012 Neo Geo)" version="1.2026.20511" provider-name="http://buildbot.libretro.com/">
<requires>
<import addon="game.libretro" version="1.0.0"/>
<import addon="game.controller.default"/>
</requires>
<extension point="kodi.gameclient" library_linux="fbalpha2012_neogeo_libretro.so">
<platforms>Neo Geo</platforms>
<extensions>zip</extensions>
<supports_vfs>false</supports_vfs>
<supports_standalone>false</supports_standalone>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Arcade (FB Alpha 2012 Neo Geo)</summary>
<description lang="en_GB">Emulator for Neo Geo by Team FB Alpha[CR]Supported files: zip[CR][CR]Game Addon Notes: (!) The BIOS files must be inside the ROM directory.</description>
<license>Non-commercial</license>
<platform>all</platform>
<source>http://buildbot.libretro.com/nightly/linux/x86_64/latest/fbalpha2012_neogeo_libretro.so.zip</source>
<news>Built from libretro buildbot commit 02a91845 (2026-02-27)</news>
<assets>
<icon>icon.png</icon>