Skip to content
This repository has been archived by the owner on Jan 9, 2019. It is now read-only.

rom module #39

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions core/core.form.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
$('[data-provider="datepicker"]').datepicker({
format: "yyyy/mm/dd"
});

$("[data-title='tooltip']").tooltip();

$("[data-toggle='lazy']").lazyload();

$("[data-title='popover']").popover({
trigger: 'hover'
});
Expand Down
42 changes: 42 additions & 0 deletions core/core.proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,27 @@
formData: {id : $($(this).attr('data-key')).val()},
paramName: 'object',
dropZone: null,
add: function (e, data) {
if ($(this).attr('accept')) {
var accepted = $(this).attr('accept').split(",").join("|").split(".").join("");
var regexp = new RegExp('(\.|\/)(' + accepted + ')$', 'i');
var uploadErrors = [];

$.each(data.files, function (index, file) {
if (data.files[index]['type'].length && !regexp.test(data.files[index]['type'])) {
uploadErrors.push(data.files[index]['name']);
}
});

if (uploadErrors.length > 0) {
core.message.toast('danger', false, 'Aborted. Unsupported file extension detected.');
} else {
data.submit();
}
} else {
data.submit();
}
},
done: function (e, data) {
try {
var obj = $.parseJSON(data.result);
Expand Down Expand Up @@ -50,6 +71,27 @@
formData: {id : $($(this).attr('data-key')).val(), data: $('#modal-data').serialize()},
paramName: 'object',
dropZone: $('.dropzone'),
add: function (e, data) {
if ($(this).attr('accept')) {
var accepted = $(this).attr('accept').split(",").join("|").split(".").join("");
var regexp = new RegExp('(\.|\/)(' + accepted + ')$', 'i');
var uploadErrors = [];

$.each(data.files, function (index, file) {
if (data.files[index]['type'].length && !regexp.test(data.files[index]['type'])) {
uploadErrors.push(data.files[index]['name']);
}
});

if (uploadErrors.length > 0) {
core.message.toast('danger', false, 'Aborted. Unsupported file extension detected.');
} else {
data.submit();
}
} else {
data.submit();
}
},
done: function (e, data) {
try {
var obj = $.parseJSON(data.result);
Expand Down
106 changes: 53 additions & 53 deletions core/db/emulators.jdb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version" : 1,
"type" : "alter",
"version" : 2,
"type" : "create",
"schema" : [
{
"name" : "id",
Expand All @@ -27,17 +27,17 @@
{
"id" : "3do",
"name" : "3do Real Multiplayer",
"whitelist" : "iso"
"whitelist" : ".iso"
},
{
"id" : "amiga",
"name" : "Amiga",
"whitelist" : "adf zip dms exe adz rp9 sh uae"
"whitelist" : ".adf .zip .dms .exe .adz .rp9 .sh .uae"
},
{
"id" : "amstradcpc",
"name" : "Amstrad CPC",
"whitelist" : "dsk cpc"
"whitelist" : ".dsk .cpc"
},
{
"id" : "arcade",
Expand All @@ -48,57 +48,57 @@
{
"id" : "apple2",
"name" : "Apple II",
"whitelist" : "dsk"
"whitelist" : ".dsk"
},
{
"id" : "atari2600",
"name" : "Atari 2600",
"whitelist" : "bin a26 rom gz zip"
"whitelist" : ".bin .a26 .rom .gz .zip"
},
{
"id" : "atari800",
"name" : "Atari 800",
"whitelist" : "a52 bas bin car xex atr xfd dcm atr.gz xfd.gz"
"whitelist" : ".a52 .bas .bin .car .xex .atr .xfd .dcm .atr.gz .xfd.gz"
},
{
"id" : "atari5200",
"name" : "Atari 5200",
"whitelist" : "a52 bas bin car xex atr xfd dcm atr.gz xfd.gz"
"whitelist" : ".a52 .bas .bin .car .xex .atr .xfd .dcm .atr.gz .xfd.gz"
},
{
"id" : "atari7800",
"name" : "Atari 7800",
"whitelist" : "a78 bin zip"
"whitelist" : ".a78 .bin .zip"
},
{
"id" : "atarijaguar",
"name" : "Atari Jaguar",
"whitelist" : "j64 jag"
"whitelist" : ".j64 .jag"
},
{
"id" : "atarilynx",
"name" : "Atari Lynx",
"whitelist" : "lnx zip"
"whitelist" : ".lnx .zip"
},
{
"id" : "atarist",
"name" : "Atari ST",
"whitelist" : "st stx img rom raw ipf ctr"
"whitelist" : ".st .stx .img .rom .raw .ipf .ctr"
},
{
"id" : "coco",
"name" : "Colour Computer / Dragon 32",
"whitelist" : "cas wav bas asc dmk jvc os9 dsk vdk rom ccc sna"
"whitelist" : ".cas .wav .bas .asc .dmk .jvc .os9 .dsk .vdk .rom .ccc .sna"
},
{
"id" : "c64",
"name" : "Commondore 64",
"whitelist" : "crt d64 g64 t64 tap x64 zip"
"whitelist" : ".crt .d64 .g64 .t64 .tap .x64 .zip"
},
{
"id" : "dreamcast",
"name" : "Dreamcast",
"whitelist" : "cdi gdi"
"whitelist" : ".cdi .gdi"
},
{
"id" : "fba",
Expand All @@ -108,47 +108,47 @@
{
"id" : "megadrive",
"name" : "Megadrive",
"whitelist" : "smd bin md iso zip"
"whitelist" : ".smd .bin .md .iso .zip"
},
{
"id" : "gamegear",
"name" : "Game Gear",
"whitelist" : "gg zip"
"whitelist" : ".gg .zip"
},
{
"id" : "gb",
"name" : "Game Boy",
"whitelist" : "gb zip"
"whitelist" : ".gb .zip"
},
{
"id" : "gbc",
"name" : "Game Boy Color",
"whitelist" : "gbc zip"
"whitelist" : ".gbc .zip"
},
{
"id" : "gba",
"name" : "Game Boy Advance",
"whitelist" : "gba zip"
"whitelist" : ".gba .zip"
},
{
"id" : "genesis",
"name" : "Genesis",
"whitelist" : "smd bin md iso zip"
"whitelist" : ".smd .bin .md .iso .zip"
},
{
"id" : "fds",
"name" : "Family Computer Disk System",
"whitelist" : "fds"
"whitelist" : ".fds"
},
{
"id" : "intellivision",
"name" : "Intellivision",
"whitelist" : "int bin"
"whitelist" : ".int .bin"
},
{
"id" : "macintosh",
"name" : "Macintosh",
"whitelist" : "img rom"
"whitelist" : ".img .rom"
},
{
"id" : "mame-mame4all",
Expand All @@ -165,12 +165,12 @@
{
"id" : "mastersystem",
"name" : "Master System",
"whitelist" : "sms zip"
"whitelist" : ".sms .zip"
},
{
"id" : "msx",
"name" : "MSX",
"whitelist" : "rom mx1 mx2 col dsk"
"whitelist" : ".rom .mx1 .mx2 .col .dsk"
},
{
"id" : "neogeo",
Expand All @@ -180,133 +180,133 @@
{
"id" : "ngp",
"name" : "Neo Geo Pocket",
"whitelist" : "ngp zip"
"whitelist" : ".ngp .zip"
},
{
"id" : "ngpc",
"name" : "Neo Geo Pocket Color",
"whitelist" : "ngc zip"
"whitelist" : ".ngc .zip"
},
{
"id" : "n64",
"name" : "Nintendo 64",
"whitelist" : "z64 n64 v64"
"whitelist" : ".z64 .n64 .v64"
},
{
"id" : "nds",
"name" : "Nintendo DS",
"whitelist" : "nds bin"
"whitelist" : ".nds .bin"
},
{
"id" : "nes",
"name" : "Nintendo Enterainment System",
"whitelist" : "zip nes smc sfc fig swc mgd fds"
"whitelist" : ".zip .nes .smc .sfc .fig .swc .mgd .fds"
},
{
"id" : "oric",
"name" : "Oric",
"whitelist" : "dsk tap"
"whitelist" : ".dsk .tap"
},
{
"id" : "pc",
"name" : "Dos Box",
"whitelist" : "com sh bat exe"
"whitelist" : ".com .sh .bat .exe"
},
{
"id" : "pcengine",
"name" : "TurbGrafx-16",
"whitelist" : "pce cue zip"
"whitelist" : ".pce .cue .zip"
},
{
"id" : "ports",
"name" : "Ports",
"whitelist" : "sh",
"whitelist" : ".sh",
"blacklist" : "folder"
},
{
"id" : "psx",
"name" : "Playstation 1",
"whitelist" : "cue cbn img iso m3u mdf pbp toc z znx"
"whitelist" : ".cue .cbn .img .iso .m3u .mdf .pbp .toc .z .znx"
},
{
"id" : "psp",
"name" : "PlayStation Portable",
"whitelist" : "cso iso pbp"
"whitelist" : ".cso .iso .pbp"
},
{
"id" : "scummvm",
"name" : "ScummVM",
"whitelist" : "sh svm"
"whitelist" : ".sh .svm"
},
{
"id" : "sega32x",
"name" : "Sega 32X",
"whitelist" : "32x smd bin md zip"
"whitelist" : ".32x .smd .bin .md .zip"
},
{
"id" : "segacd",
"name" : "Sega CD",
"whitelist" : "cue iso"
"whitelist" : ".cue .iso"
},
{
"id" : "saturn",
"name" : "Sega Saturn",
"whitelist" : "bin iso mdf"
"whitelist" : ".bin .iso .mdf"
},
{
"id" : "sg-1000",
"name" : "Sega SG-1000",
"whitelist" : "sg zip"
"whitelist" : ".sg .zip"
},
{
"id" : "snes",
"name" : "Super Nintendo Entertainment System",
"whitelist" : "zip smc sfc fig swc"
"whitelist" : ".zip .smc .sfc .fig .swc"
},
{
"id" : "ti99",
"name" : "TI-99/4A",
"whitelist" : "cfg"
"whitelist" : ".cfg"
},
{
"id" : "trs-80",
"name" : "TRS-80",
"whitelist" : "dsk"
"whitelist" : ".dsk"
},
{
"id" : "vectrex",
"name" : "Vectrex",
"whitelist" : "vec gam bin"
"whitelist" : ".vec .gam .bin"
},
{
"id" : "videopac",
"name" : "Videopac G7000 / Odyssey2",
"whitelist" : "bin"
"whitelist" : ".bin"
},
{
"id" : "virtualboy",
"name" : "Virtual Boy",
"whitelist" : "vb"
"whitelist" : ".vb"
},
{
"id" : "wonderswan",
"name" : "WonderSwan",
"whitelist" : "ws"
"whitelist" : ".ws"
},
{
"id" : "wonderswancolor",
"name" : "WonderSwan Color",
"whitelist" : "wsc"
"whitelist" : ".wsc"
},
{
"id" : "zmachine",
"name" : "Z-Machine",
"whitelist" : "dat zip z1 z2 z3 z4 z5 z6 z7 z8"
"whitelist" : ".dat .zip .z1 .z2 .z3 .z4 .z5 .z6 .z7 .z8"
},
{
"id" : "zxspectrum",
"name" : "ZX Spectrum",
"whitelist" : "sna szx z80 tap tzx gz udi mgt img trd scl dsk"
"whitelist" : ".sna .szx .z80 .tap .tzx .gz .udi .mgt .img .trd .scl .dsk"
}
]
}
Binary file added core/img/emulators/3do/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/3do/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/ags/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/ags/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/amiga/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/amiga/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/amstradcpc/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/amstradcpc/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/apple2/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/apple2/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/arcade/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/arcade/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/art/Cabin-Bold.ttf
Binary file not shown.
Binary file added core/img/emulators/art/scroll-old.wav
Binary file not shown.
Binary file added core/img/emulators/art/scroll.wav
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atari2600/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atari5200/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atari5200/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atari7800/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/atari7800/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atari7800/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atari800/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atari800/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atarijaguar/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atarijaguar/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atarilynx/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atarilynx/art/system.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atarist/art/controller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added core/img/emulators/atarist/art/system.png
Binary file added core/img/emulators/bbcmicro/art/controller.png
Binary file added core/img/emulators/bbcmicro/art/system.png
Binary file added core/img/emulators/c64/art/controller.png
Binary file added core/img/emulators/c64/art/system.png
Binary file added core/img/emulators/channelf/art/controller.png
Binary file added core/img/emulators/channelf/art/system.png
Binary file added core/img/emulators/coco/art/controller.png
Binary file added core/img/emulators/coco/art/system.png
Binary file added core/img/emulators/colecovision/art/system.png
Binary file added core/img/emulators/daphne/art/controller.png
Binary file added core/img/emulators/daphne/art/system.png
Binary file added core/img/emulators/desktop/art/controller.png
Binary file added core/img/emulators/desktop/art/system.png
Binary file added core/img/emulators/dragon32/art/controller.png
Binary file added core/img/emulators/dragon32/art/system.png
Binary file added core/img/emulators/dreamcast/art/controller.png
Binary file added core/img/emulators/dreamcast/art/system.png
Binary file added core/img/emulators/fba/art/controller.png
Binary file added core/img/emulators/fba/art/system.png
Binary file added core/img/emulators/fds/art/controller.png
Binary file added core/img/emulators/fds/art/system.png
Binary file added core/img/emulators/gameandwatch/art/system.png
Binary file added core/img/emulators/gamegear/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/gamegear/art/controller.png
Binary file added core/img/emulators/gamegear/art/system.png
Binary file added core/img/emulators/gb/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/gb/art/controller.png
Binary file added core/img/emulators/gb/art/system.png
Binary file added core/img/emulators/gba/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/gba/art/controller.png
Binary file added core/img/emulators/gba/art/system.png
Binary file added core/img/emulators/gbc/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/gbc/art/controller.png
Binary file added core/img/emulators/gbc/art/system.png
Binary file added core/img/emulators/gc/art/system.png
Binary file added core/img/emulators/genesis/art/controller.png
Binary file added core/img/emulators/genesis/art/system.png
Binary file added core/img/emulators/intellivision/art/system.png
Binary file added core/img/emulators/kodi/art/controller.png
Binary file added core/img/emulators/kodi/art/system.png
Binary file added core/img/emulators/love/art/controller.png
Binary file added core/img/emulators/love/art/system.png
Binary file added core/img/emulators/macintosh/art/controller.png
Binary file added core/img/emulators/macintosh/art/system.png
Binary file added core/img/emulators/mame-advmame/art/system.png
Binary file added core/img/emulators/mame-libretro/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/mame-libretro/art/system.png
Binary file added core/img/emulators/mame-mame4all/art/system.png
Binary file added core/img/emulators/mame/art/controller.png
Binary file added core/img/emulators/mame/art/system.png
Binary file added core/img/emulators/mastersystem/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/mastersystem/art/system.png
Binary file added core/img/emulators/megadrive/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/megadrive/art/controller.png
Binary file added core/img/emulators/megadrive/art/system.png
Binary file added core/img/emulators/mess/art/controller.png
Binary file added core/img/emulators/mess/art/system.png
Binary file added core/img/emulators/msx/art/controller.png
Binary file added core/img/emulators/msx/art/system.png
Binary file added core/img/emulators/n64/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/n64/art/controller.png
Binary file added core/img/emulators/n64/art/system.png
Binary file added core/img/emulators/nds/art/controller.png
Binary file added core/img/emulators/nds/art/system.png
Binary file added core/img/emulators/neogeo/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/neogeo/art/controller.png
Binary file added core/img/emulators/neogeo/art/system.png
Binary file added core/img/emulators/nes/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/nes/art/controller.png
Binary file added core/img/emulators/nes/art/system.png
Binary file added core/img/emulators/ngp/art/controller.png
Binary file added core/img/emulators/ngp/art/system.png
Binary file added core/img/emulators/ngpc/art/controller.png
Binary file added core/img/emulators/ngpc/art/system.png
Binary file added core/img/emulators/odyssey2/art/controller.png
Binary file added core/img/emulators/odyssey2/art/system.png
Binary file added core/img/emulators/oric/art/controller.png
Binary file added core/img/emulators/oric/art/system.png
Binary file added core/img/emulators/pc/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/pc/art/controller.png
Binary file added core/img/emulators/pc/art/system.png
Binary file added core/img/emulators/pce-cd/art/controller.png
Binary file added core/img/emulators/pce-cd/art/system.png
Binary file added core/img/emulators/pcengine/art/controller.png
Binary file added core/img/emulators/pcengine/art/system.png
Binary file added core/img/emulators/ports/art/controller.png
Binary file added core/img/emulators/ports/art/system.png
Binary file added core/img/emulators/ps2/art/system.png
Binary file added core/img/emulators/psp/art/controller.png
Binary file added core/img/emulators/psp/art/system.png
Binary file added core/img/emulators/psx/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/psx/art/controller.png
Binary file added core/img/emulators/psx/art/system.png
Binary file added core/img/emulators/residualvm/art/controller.png
Binary file added core/img/emulators/residualvm/art/system.png
Binary file added core/img/emulators/retropie/art/controller.png
Binary file added core/img/emulators/retropie/art/system.png
Binary file added core/img/emulators/samcoupe/art/controller.png
Binary file added core/img/emulators/samcoupe/art/system.png
Binary file added core/img/emulators/saturn/art/controller.png
Binary file added core/img/emulators/saturn/art/system.png
Binary file added core/img/emulators/scummvm/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/scummvm/art/controller.png
Binary file added core/img/emulators/scummvm/art/system.png
Binary file added core/img/emulators/sega32x/art/controller.png
Binary file added core/img/emulators/sega32x/art/system.png
Binary file added core/img/emulators/segacd/art/controller.png
Binary file added core/img/emulators/segacd/art/system.png
Binary file added core/img/emulators/sg-1000/art/controller.png
Binary file added core/img/emulators/sg-1000/art/system.png
Binary file added core/img/emulators/snes/Thumbs.db
Binary file not shown.
Binary file added core/img/emulators/snes/art/controller.png
Binary file added core/img/emulators/snes/art/system.png
Binary file added core/img/emulators/steam/art/controller.png
Binary file added core/img/emulators/steam/art/system.png
Binary file added core/img/emulators/stratagus/art/controller.png
Binary file added core/img/emulators/stratagus/art/system.png
Binary file added core/img/emulators/supergrafx/art/controller.png
Binary file added core/img/emulators/supergrafx/art/system.png
Binary file added core/img/emulators/tg-cd/art/controller.png
Binary file added core/img/emulators/tg-cd/art/system.png
Binary file added core/img/emulators/tg16/art/controller.png
Binary file added core/img/emulators/tg16/art/system.png
Binary file added core/img/emulators/ti99/art/controller.png
Binary file added core/img/emulators/ti99/art/system.png
Binary file added core/img/emulators/trs80/art/controller.png
Binary file added core/img/emulators/trs80/art/system.png
Binary file added core/img/emulators/vectrex/art/controller.png
Binary file added core/img/emulators/vectrex/art/system.png
Binary file added core/img/emulators/videopac/art/controller.png
Binary file added core/img/emulators/videopac/art/system.png
Binary file added core/img/emulators/virtualboy/art/controller.png
Binary file added core/img/emulators/virtualboy/art/system.png
Binary file added core/img/emulators/wii/art/system.png
Binary file added core/img/emulators/wonderswan/art/controller.png
Binary file added core/img/emulators/wonderswan/art/system.png
Binary file added core/img/emulators/wonderswancolor/art/system.png
Binary file added core/img/emulators/zmachine/art/controller.png
Binary file added core/img/emulators/zmachine/art/system.png
Binary file added core/img/emulators/zxspectrum/art/controller.png
Binary file added core/img/emulators/zxspectrum/art/system.png
Loading