Nahrát soubory do „doswasmx“
This commit is contained in:
parent
549cdfc6e7
commit
2a08076425
5 changed files with 2605 additions and 0 deletions
BIN
doswasmx/main.ttf
Normal file
BIN
doswasmx/main.ttf
Normal file
Binary file not shown.
BIN
doswasmx/main.wasm
Normal file
BIN
doswasmx/main.wasm
Normal file
Binary file not shown.
7
doswasmx/romlist.js
Normal file
7
doswasmx/romlist.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
var ROMLIST = [
|
||||
/*
|
||||
{url:"game1.iso",title:"Game1",skipiso:"true",ram:"128"},
|
||||
{url:"game2.iso",title:"Game2",skipiso:"true",ram:"128"},
|
||||
{url:"game3.iso",title:"Game3",skipiso:"true",ram:"128"},
|
||||
*/
|
||||
];
|
2588
doswasmx/script.js
Normal file
2588
doswasmx/script.js
Normal file
File diff suppressed because it is too large
Load diff
10
doswasmx/settings.js
Normal file
10
doswasmx/settings.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
var DOSWASMSETTINGS = {
|
||||
CLOUDSAVEURL: "",
|
||||
ISOURL: "",
|
||||
DEFAULTIMG: ""
|
||||
}
|
||||
|
||||
var rando = Math.floor(Math.random() * Math.floor(100000));
|
||||
var script = document.createElement('script');
|
||||
script.src = 'script.js?v=' + rando;
|
||||
document.getElementsByTagName('head')[0].appendChild(script);
|
Loading…
Reference in a new issue