forked from LegendaryLinux/ArchipelaBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathromFileExtensions.js
More file actions
125 lines (87 loc) · 1.76 KB
/
romFileExtensions.js
File metadata and controls
125 lines (87 loc) · 1.76 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
module.exports = [
// General ROM File Extensions
// 'bin', // Generic binary ROM file
'rom', // Generic ROM image file
'iso', // CD/DVD disc image (used for disc-based consoles like PS1, PS2)
'img', // Disk image file
'cue', // Cue sheet file (used with bin or iso files)
// NES (Nintendo Entertainment System)
'nes', 'unf', 'fds',
// SNES (Super Nintendo Entertainment System)
'smc', 'sfc', 'fig', 'swc',
// Nintendo 64
'z64', 'n64', 'v64',
// Game Boy / Game Boy Color
'gb', 'gbc', 'cgb',
// Game Boy Advance
'gba',
// Nintendo DS
'nds', 'dsi',
// Nintendo 3DS
'3ds', 'cci', 'cxi', 'app',
// Nintendo Switch
'xci', 'nsp', 'ncz',
// Sega Genesis / Mega Drive
// 'smd', 'gen', 'md',
'smd', 'gen',
// Sega Master System
'sms',
// Sega Saturn
'iso', 'cue',
// Sega Dreamcast
'cdi', 'gdi', 'chd',
// Game Gear
'gg',
// PlayStation 1 (PSX/PS1)
'pbp', 'z',
// PlayStation 2 (PS2)
'nrg',
// PlayStation Portable (PSP)
'cso',
// PlayStation 3 (PS3)
// 'pkg',
// PlayStation 4 (PS4)
// 'pkg',
// Xbox
'xbe',
// Xbox 360
'xex', 'god',
// Xbox One
'xvd',
// MS-DOS
'ima', 'dos',
// Windows Games
// 'exe',
// Commodore 64
'd64', 't64', 'prg', 'tap', 'crt',
// MAME (Multiple Arcade Machine Emulator)
// 'zip', 'chd', '7z',
'chd',
// Neo Geo
'neo',
// Atari Consoles
// Atari 2600
'a26',
// Atari 5200
'a52',
// Atari 7800
'a78',
// Atari Jaguar
'j64', 'jag',
// Atari Lynx
'lnx',
// Atari ST
'st', 'stx', 'msa',
// Amiga
'adf', 'adz', 'dms', 'ipf',
// ColecoVision
'col',
// Intellivision
'int',
// TurboGrafx-16 / PC Engine
'pce', 'tg16',
// WonderSwan
'ws', 'wsc',
// Neo Geo Pocket
'ngp', 'ngc'
];