@thenick775/mgba-wasm 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mgba.d.ts +9 -1
- package/dist/mgba.js +78 -48
- package/dist/mgba.wasm +0 -0
- package/dist/mgba.wasm.map +1 -1
- package/package.json +1 -1
package/dist/mgba.d.ts
CHANGED
|
@@ -24,6 +24,13 @@ declare namespace mGBA {
|
|
|
24
24
|
videoFrameStartedCallback?: (() => void) | null;
|
|
25
25
|
};
|
|
26
26
|
|
|
27
|
+
export type coreSettings = {
|
|
28
|
+
frameSkip?: number;
|
|
29
|
+
rewindBufferCapacity?: number;
|
|
30
|
+
rewindBufferInterval?: number;
|
|
31
|
+
allowOpposingDirections?: boolean;
|
|
32
|
+
};
|
|
33
|
+
|
|
27
34
|
export interface mGBAEmulator extends EmscriptenModule {
|
|
28
35
|
// custom methods from preamble
|
|
29
36
|
autoLoadCheats(): boolean;
|
|
@@ -39,7 +46,7 @@ declare namespace mGBA {
|
|
|
39
46
|
getVolume(): number;
|
|
40
47
|
listRoms(): string[];
|
|
41
48
|
listSaves(): string[];
|
|
42
|
-
loadGame(romPath: string): boolean;
|
|
49
|
+
loadGame(romPath: string, savePathOverride?: string): boolean;
|
|
43
50
|
loadState(slot: number): boolean;
|
|
44
51
|
pauseGame(): void;
|
|
45
52
|
quickReload(): void;
|
|
@@ -58,6 +65,7 @@ declare namespace mGBA {
|
|
|
58
65
|
uploadSaveOrSaveState(file: File, callback?: () => void): void;
|
|
59
66
|
addCoreCallbacks(coreCallbacks: coreCallbacks): void;
|
|
60
67
|
toggleRewind(enabled: boolean): void;
|
|
68
|
+
setCoreSettings(coreSettings: CoreSettings): void;
|
|
61
69
|
// custom variables
|
|
62
70
|
version: {
|
|
63
71
|
projectName: string;
|
package/dist/mgba.js
CHANGED
|
@@ -57,17 +57,18 @@ var ENVIRONMENT_IS_PTHREAD = ENVIRONMENT_IS_WORKER && self.name?.startsWith('em-
|
|
|
57
57
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
58
58
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
59
59
|
|
|
60
|
-
Module.loadGame = (
|
|
61
|
-
const loadGame = cwrap('loadGame', 'number', ['string']);
|
|
60
|
+
Module.loadGame = (romPath, savePathOverride) => {
|
|
61
|
+
const loadGame = cwrap('loadGame', 'number', ['string', 'string']);
|
|
62
62
|
|
|
63
|
-
if (loadGame(
|
|
64
|
-
const arr =
|
|
63
|
+
if (loadGame(romPath, savePathOverride)) {
|
|
64
|
+
const arr = romPath.split('.');
|
|
65
65
|
arr.pop();
|
|
66
66
|
|
|
67
67
|
const saveName = arr.join('.') + '.sav';
|
|
68
68
|
|
|
69
|
-
Module.gameName =
|
|
70
|
-
Module.saveName =
|
|
69
|
+
Module.gameName = romPath;
|
|
70
|
+
Module.saveName =
|
|
71
|
+
savePathOverride ?? saveName.replace('/data/games/', '/data/saves/');
|
|
71
72
|
return true;
|
|
72
73
|
}
|
|
73
74
|
|
|
@@ -451,6 +452,34 @@ Module.toggleRewind = (toggle) => {
|
|
|
451
452
|
|
|
452
453
|
toggleRewind(toggle);
|
|
453
454
|
};
|
|
455
|
+
|
|
456
|
+
Module.setCoreSettings = (coreSettings) => {
|
|
457
|
+
const setIntegerCoreSetting = cwrap('setIntegerCoreSetting', null, [
|
|
458
|
+
'string',
|
|
459
|
+
'number',
|
|
460
|
+
]);
|
|
461
|
+
|
|
462
|
+
if (coreSettings.allowOpposingDirections !== undefined)
|
|
463
|
+
setIntegerCoreSetting(
|
|
464
|
+
'allowOpposingDirections',
|
|
465
|
+
coreSettings.allowOpposingDirections
|
|
466
|
+
);
|
|
467
|
+
|
|
468
|
+
if (coreSettings.rewindBufferCapacity !== undefined)
|
|
469
|
+
setIntegerCoreSetting(
|
|
470
|
+
'rewindBufferCapacity',
|
|
471
|
+
coreSettings.rewindBufferCapacity
|
|
472
|
+
);
|
|
473
|
+
|
|
474
|
+
if (coreSettings.rewindBufferInterval !== undefined)
|
|
475
|
+
setIntegerCoreSetting(
|
|
476
|
+
'rewindBufferInterval',
|
|
477
|
+
coreSettings.rewindBufferInterval
|
|
478
|
+
);
|
|
479
|
+
|
|
480
|
+
if (coreSettings?.frameSkip !== undefined)
|
|
481
|
+
setIntegerCoreSetting('frameSkip', coreSettings.frameSkip);
|
|
482
|
+
};
|
|
454
483
|
// end include: /home/mgba/src/src/platform/wasm/pre.js
|
|
455
484
|
|
|
456
485
|
|
|
@@ -1069,32 +1098,32 @@ async function createWasm() {
|
|
|
1069
1098
|
// === Body ===
|
|
1070
1099
|
|
|
1071
1100
|
var ASM_CONSTS = {
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1101
|
+
310240: () => { console.error("thread instantiation failed") },
|
|
1102
|
+
310289: ($0, $1) => { Module.canvas.width = $0; Module.canvas.height = $1; },
|
|
1103
|
+
310346: ($0, $1, $2, $3, $4, $5, $6) => { Module.version = { gitCommit : UTF8ToString($0), gitShort : UTF8ToString($1), gitBranch : UTF8ToString($2), gitRevision : $3, binaryName : UTF8ToString($4), projectName : UTF8ToString($5), projectVersion : UTF8ToString($6) }; },
|
|
1104
|
+
310578: ($0, $1) => { const funcPtr = $0; const ctx = $1; const func = wasmTable.get(funcPtr); if (func) func(ctx); },
|
|
1105
|
+
310676: ($0, $1) => { const funcPtr = $0; const ctx = $1; const func = wasmTable.get(funcPtr); if (func) func(ctx); },
|
|
1106
|
+
310774: ($0, $1) => { const funcPtr = $0; const ctx = $1; const func = wasmTable.get(funcPtr); if (func) func(ctx); },
|
|
1107
|
+
310872: ($0, $1) => { const funcPtr = $0; const ctx = $1; const func = wasmTable.get(funcPtr); if (func) func(ctx); },
|
|
1108
|
+
310970: ($0, $1) => { const funcPtr = $0; const ctx = $1; const func = wasmTable.get(funcPtr); if (func) func(ctx); },
|
|
1109
|
+
311068: ($0, $1) => { const funcPtr = $0; const ctx = $1; const func = wasmTable.get(funcPtr); if (func) func(ctx); },
|
|
1110
|
+
311166: () => { FS.syncfs(function (err) { assert(!err); }) },
|
|
1111
|
+
311210: ($0) => { var str = UTF8ToString($0) + '\n\n' + 'Abort/Retry/Ignore/AlwaysIgnore? [ariA] :'; var reply = window.prompt(str, "i"); if (reply === null) { reply = "i"; } return allocate(intArrayFromString(reply), 'i8', ALLOC_NORMAL); },
|
|
1112
|
+
311435: () => { if (typeof(AudioContext) !== 'undefined') { return true; } else if (typeof(webkitAudioContext) !== 'undefined') { return true; } return false; },
|
|
1113
|
+
311582: () => { if ((typeof(navigator.mediaDevices) !== 'undefined') && (typeof(navigator.mediaDevices.getUserMedia) !== 'undefined')) { return true; } else if (typeof(navigator.webkitGetUserMedia) !== 'undefined') { return true; } return false; },
|
|
1114
|
+
311816: ($0) => { if(typeof(Module['SDL2']) === 'undefined') { Module['SDL2'] = {}; } var SDL2 = Module['SDL2']; if (!$0) { SDL2.audio = {}; } else { SDL2.capture = {}; } if (!SDL2.audioContext) { if (typeof(AudioContext) !== 'undefined') { SDL2.audioContext = new AudioContext(); } else if (typeof(webkitAudioContext) !== 'undefined') { SDL2.audioContext = new webkitAudioContext(); } if (SDL2.audioContext) { if ((typeof navigator.userActivation) === 'undefined') { autoResumeAudioContext(SDL2.audioContext); } } } return SDL2.audioContext === undefined ? -1 : 0; },
|
|
1115
|
+
312368: () => { var SDL2 = Module['SDL2']; return SDL2.audioContext.sampleRate; },
|
|
1116
|
+
312436: ($0, $1, $2, $3) => { var SDL2 = Module['SDL2']; var have_microphone = function(stream) { if (SDL2.capture.silenceTimer !== undefined) { clearInterval(SDL2.capture.silenceTimer); SDL2.capture.silenceTimer = undefined; SDL2.capture.silenceBuffer = undefined } SDL2.capture.mediaStreamNode = SDL2.audioContext.createMediaStreamSource(stream); SDL2.capture.scriptProcessorNode = SDL2.audioContext.createScriptProcessor($1, $0, 1); SDL2.capture.scriptProcessorNode.onaudioprocess = function(audioProcessingEvent) { if ((SDL2 === undefined) || (SDL2.capture === undefined)) { return; } audioProcessingEvent.outputBuffer.getChannelData(0).fill(0.0); SDL2.capture.currentCaptureBuffer = audioProcessingEvent.inputBuffer; dynCall('vi', $2, [$3]); }; SDL2.capture.mediaStreamNode.connect(SDL2.capture.scriptProcessorNode); SDL2.capture.scriptProcessorNode.connect(SDL2.audioContext.destination); SDL2.capture.stream = stream; }; var no_microphone = function(error) { }; SDL2.capture.silenceBuffer = SDL2.audioContext.createBuffer($0, $1, SDL2.audioContext.sampleRate); SDL2.capture.silenceBuffer.getChannelData(0).fill(0.0); var silence_callback = function() { SDL2.capture.currentCaptureBuffer = SDL2.capture.silenceBuffer; dynCall('vi', $2, [$3]); }; SDL2.capture.silenceTimer = setInterval(silence_callback, ($1 / SDL2.audioContext.sampleRate) * 1000); if ((navigator.mediaDevices !== undefined) && (navigator.mediaDevices.getUserMedia !== undefined)) { navigator.mediaDevices.getUserMedia({ audio: true, video: false }).then(have_microphone).catch(no_microphone); } else if (navigator.webkitGetUserMedia !== undefined) { navigator.webkitGetUserMedia({ audio: true, video: false }, have_microphone, no_microphone); } },
|
|
1117
|
+
314129: ($0, $1, $2, $3) => { var SDL2 = Module['SDL2']; SDL2.audio.scriptProcessorNode = SDL2.audioContext['createScriptProcessor']($1, 0, $0); SDL2.audio.scriptProcessorNode['onaudioprocess'] = function (e) { if ((SDL2 === undefined) || (SDL2.audio === undefined)) { return; } if (SDL2.audio.silenceTimer !== undefined) { clearInterval(SDL2.audio.silenceTimer); SDL2.audio.silenceTimer = undefined; SDL2.audio.silenceBuffer = undefined; } SDL2.audio.currentOutputBuffer = e['outputBuffer']; dynCall('vi', $2, [$3]); }; SDL2.audio.scriptProcessorNode['connect'](SDL2.audioContext['destination']); if (SDL2.audioContext.state === 'suspended') { SDL2.audio.silenceBuffer = SDL2.audioContext.createBuffer($0, $1, SDL2.audioContext.sampleRate); SDL2.audio.silenceBuffer.getChannelData(0).fill(0.0); var silence_callback = function() { if ((typeof navigator.userActivation) !== 'undefined') { if (navigator.userActivation.hasBeenActive) { SDL2.audioContext.resume(); } } SDL2.audio.currentOutputBuffer = SDL2.audio.silenceBuffer; dynCall('vi', $2, [$3]); SDL2.audio.currentOutputBuffer = undefined; }; SDL2.audio.silenceTimer = setInterval(silence_callback, ($1 / SDL2.audioContext.sampleRate) * 1000); } },
|
|
1118
|
+
315304: ($0, $1) => { var SDL2 = Module['SDL2']; var numChannels = SDL2.capture.currentCaptureBuffer.numberOfChannels; for (var c = 0; c < numChannels; ++c) { var channelData = SDL2.capture.currentCaptureBuffer.getChannelData(c); if (channelData.length != $1) { throw 'Web Audio capture buffer length mismatch! Destination size: ' + channelData.length + ' samples vs expected ' + $1 + ' samples!'; } if (numChannels == 1) { for (var j = 0; j < $1; ++j) { setValue($0 + (j * 4), channelData[j], 'float'); } } else { for (var j = 0; j < $1; ++j) { setValue($0 + (((j * numChannels) + c) * 4), channelData[j], 'float'); } } } },
|
|
1119
|
+
315909: ($0, $1) => { var SDL2 = Module['SDL2']; var buf = $0 >>> 2; var numChannels = SDL2.audio.currentOutputBuffer['numberOfChannels']; for (var c = 0; c < numChannels; ++c) { var channelData = SDL2.audio.currentOutputBuffer['getChannelData'](c); if (channelData.length != $1) { throw 'Web Audio output buffer length mismatch! Destination size: ' + channelData.length + ' samples vs expected ' + $1 + ' samples!'; } for (var j = 0; j < $1; ++j) { channelData[j] = HEAPF32[buf + (j*numChannels + c)]; } } },
|
|
1120
|
+
316398: ($0) => { var SDL2 = Module['SDL2']; if ($0) { if (SDL2.capture.silenceTimer !== undefined) { clearInterval(SDL2.capture.silenceTimer); } if (SDL2.capture.stream !== undefined) { var tracks = SDL2.capture.stream.getAudioTracks(); for (var i = 0; i < tracks.length; i++) { SDL2.capture.stream.removeTrack(tracks[i]); } } if (SDL2.capture.scriptProcessorNode !== undefined) { SDL2.capture.scriptProcessorNode.onaudioprocess = function(audioProcessingEvent) {}; SDL2.capture.scriptProcessorNode.disconnect(); } if (SDL2.capture.mediaStreamNode !== undefined) { SDL2.capture.mediaStreamNode.disconnect(); } SDL2.capture = undefined; } else { if (SDL2.audio.scriptProcessorNode != undefined) { SDL2.audio.scriptProcessorNode.disconnect(); } if (SDL2.audio.silenceTimer !== undefined) { clearInterval(SDL2.audio.silenceTimer); } SDL2.audio = undefined; } if ((SDL2.audioContext !== undefined) && (SDL2.audio === undefined) && (SDL2.capture === undefined)) { SDL2.audioContext.close(); SDL2.audioContext = undefined; } },
|
|
1121
|
+
317404: ($0, $1, $2) => { var w = $0; var h = $1; var pixels = $2; if (!Module['SDL2']) Module['SDL2'] = {}; var SDL2 = Module['SDL2']; if (SDL2.ctxCanvas !== Module['canvas']) { SDL2.ctx = Module['createContext'](Module['canvas'], false, true); SDL2.ctxCanvas = Module['canvas']; } if (SDL2.w !== w || SDL2.h !== h || SDL2.imageCtx !== SDL2.ctx) { SDL2.image = SDL2.ctx.createImageData(w, h); SDL2.w = w; SDL2.h = h; SDL2.imageCtx = SDL2.ctx; } var data = SDL2.image.data; var src = pixels / 4; var dst = 0; var num; if (typeof CanvasPixelArray !== 'undefined' && data instanceof CanvasPixelArray) { num = data.length; while (dst < num) { var val = HEAP32[src]; data[dst ] = val & 0xff; data[dst+1] = (val >> 8) & 0xff; data[dst+2] = (val >> 16) & 0xff; data[dst+3] = 0xff; src++; dst += 4; } } else { if (SDL2.data32Data !== data) { SDL2.data32 = new Int32Array(data.buffer); SDL2.data8 = new Uint8Array(data.buffer); SDL2.data32Data = data; } var data32 = SDL2.data32; num = data32.length; data32.set(HEAP32.subarray(src, src + num)); var data8 = SDL2.data8; var i = 3; var j = i + 4*num; if (num % 8 == 0) { while (i < j) { data8[i] = 0xff; i = i + 4 | 0; data8[i] = 0xff; i = i + 4 | 0; data8[i] = 0xff; i = i + 4 | 0; data8[i] = 0xff; i = i + 4 | 0; data8[i] = 0xff; i = i + 4 | 0; data8[i] = 0xff; i = i + 4 | 0; data8[i] = 0xff; i = i + 4 | 0; data8[i] = 0xff; i = i + 4 | 0; } } else { while (i < j) { data8[i] = 0xff; i = i + 4 | 0; } } } SDL2.ctx.putImageData(SDL2.image, 0, 0); },
|
|
1122
|
+
318872: ($0, $1, $2, $3, $4) => { var w = $0; var h = $1; var hot_x = $2; var hot_y = $3; var pixels = $4; var canvas = document.createElement("canvas"); canvas.width = w; canvas.height = h; var ctx = canvas.getContext("2d"); var image = ctx.createImageData(w, h); var data = image.data; var src = pixels / 4; var dst = 0; var num; if (typeof CanvasPixelArray !== 'undefined' && data instanceof CanvasPixelArray) { num = data.length; while (dst < num) { var val = HEAP32[src]; data[dst ] = val & 0xff; data[dst+1] = (val >> 8) & 0xff; data[dst+2] = (val >> 16) & 0xff; data[dst+3] = (val >> 24) & 0xff; src++; dst += 4; } } else { var data32 = new Int32Array(data.buffer); num = data32.length; data32.set(HEAP32.subarray(src, src + num)); } ctx.putImageData(image, 0, 0); var url = hot_x === 0 && hot_y === 0 ? "url(" + canvas.toDataURL() + "), auto" : "url(" + canvas.toDataURL() + ") " + hot_x + " " + hot_y + ", auto"; var urlBuf = _malloc(url.length + 1); stringToUTF8(url, urlBuf, url.length + 1); return urlBuf; },
|
|
1123
|
+
319860: ($0) => { if (Module['canvas']) { Module['canvas'].style['cursor'] = UTF8ToString($0); } },
|
|
1124
|
+
319943: () => { if (Module['canvas']) { Module['canvas'].style['cursor'] = 'none'; } },
|
|
1125
|
+
320012: () => { return window.innerWidth; },
|
|
1126
|
+
320042: () => { return window.innerHeight; }
|
|
1098
1127
|
};
|
|
1099
1128
|
|
|
1100
1129
|
// end include: preamble.js
|
|
@@ -12834,10 +12863,11 @@ var _bindKey = Module['_bindKey'] = (a0, a1) => (_bindKey = Module['_bindKey'] =
|
|
|
12834
12863
|
var _saveState = Module['_saveState'] = (a0) => (_saveState = Module['_saveState'] = wasmExports['saveState'])(a0);
|
|
12835
12864
|
var _loadState = Module['_loadState'] = (a0) => (_loadState = Module['_loadState'] = wasmExports['loadState'])(a0);
|
|
12836
12865
|
var _autoLoadCheats = Module['_autoLoadCheats'] = () => (_autoLoadCheats = Module['_autoLoadCheats'] = wasmExports['autoLoadCheats'])();
|
|
12837
|
-
var _loadGame = Module['_loadGame'] = (a0) => (_loadGame = Module['_loadGame'] = wasmExports['loadGame'])(a0);
|
|
12866
|
+
var _loadGame = Module['_loadGame'] = (a0, a1) => (_loadGame = Module['_loadGame'] = wasmExports['loadGame'])(a0, a1);
|
|
12838
12867
|
var _saveStateSlot = Module['_saveStateSlot'] = (a0, a1) => (_saveStateSlot = Module['_saveStateSlot'] = wasmExports['saveStateSlot'])(a0, a1);
|
|
12839
12868
|
var _loadStateSlot = Module['_loadStateSlot'] = (a0, a1) => (_loadStateSlot = Module['_loadStateSlot'] = wasmExports['loadStateSlot'])(a0, a1);
|
|
12840
12869
|
var _addCoreCallbacks = Module['_addCoreCallbacks'] = (a0, a1, a2, a3, a4, a5) => (_addCoreCallbacks = Module['_addCoreCallbacks'] = wasmExports['addCoreCallbacks'])(a0, a1, a2, a3, a4, a5);
|
|
12870
|
+
var _setIntegerCoreSetting = Module['_setIntegerCoreSetting'] = (a0, a1) => (_setIntegerCoreSetting = Module['_setIntegerCoreSetting'] = wasmExports['setIntegerCoreSetting'])(a0, a1);
|
|
12841
12871
|
var _setupConstants = Module['_setupConstants'] = () => (_setupConstants = Module['_setupConstants'] = wasmExports['setupConstants'])();
|
|
12842
12872
|
var _main = Module['_main'] = (a0, a1) => (_main = Module['_main'] = wasmExports['main'])(a0, a1);
|
|
12843
12873
|
var _malloc = (a0) => (_malloc = wasmExports['malloc'])(a0);
|
|
@@ -12856,21 +12886,21 @@ var _emscripten_stack_set_limits = (a0, a1) => (_emscripten_stack_set_limits = w
|
|
|
12856
12886
|
var __emscripten_stack_restore = (a0) => (__emscripten_stack_restore = wasmExports['_emscripten_stack_restore'])(a0);
|
|
12857
12887
|
var __emscripten_stack_alloc = (a0) => (__emscripten_stack_alloc = wasmExports['_emscripten_stack_alloc'])(a0);
|
|
12858
12888
|
var _emscripten_stack_get_current = () => (_emscripten_stack_get_current = wasmExports['emscripten_stack_get_current'])();
|
|
12859
|
-
var _GBAInputInfo = Module['_GBAInputInfo'] =
|
|
12860
|
-
var _binaryName = Module['_binaryName'] =
|
|
12861
|
-
var _projectName = Module['_projectName'] =
|
|
12862
|
-
var _projectVersion = Module['_projectVersion'] =
|
|
12863
|
-
var _gitCommit = Module['_gitCommit'] =
|
|
12864
|
-
var _gitCommitShort = Module['_gitCommitShort'] =
|
|
12865
|
-
var _gitBranch = Module['_gitBranch'] =
|
|
12866
|
-
var _gitRevision = Module['_gitRevision'] =
|
|
12867
|
-
var _GBIORegisterNames = Module['_GBIORegisterNames'] =
|
|
12868
|
-
var _GBSavestateMagic = Module['_GBSavestateMagic'] =
|
|
12869
|
-
var _GBSavestateVersion = Module['_GBSavestateVersion'] =
|
|
12870
|
-
var _GBA_LUX_LEVELS = Module['_GBA_LUX_LEVELS'] =
|
|
12871
|
-
var _GBAVideoObjSizes = Module['_GBAVideoObjSizes'] =
|
|
12872
|
-
var _GBASavestateMagic = Module['_GBASavestateMagic'] =
|
|
12873
|
-
var _GBASavestateVersion = Module['_GBASavestateVersion'] =
|
|
12889
|
+
var _GBAInputInfo = Module['_GBAInputInfo'] = 122320;
|
|
12890
|
+
var _binaryName = Module['_binaryName'] = 198352;
|
|
12891
|
+
var _projectName = Module['_projectName'] = 198356;
|
|
12892
|
+
var _projectVersion = Module['_projectVersion'] = 198360;
|
|
12893
|
+
var _gitCommit = Module['_gitCommit'] = 198336;
|
|
12894
|
+
var _gitCommitShort = Module['_gitCommitShort'] = 198340;
|
|
12895
|
+
var _gitBranch = Module['_gitBranch'] = 198344;
|
|
12896
|
+
var _gitRevision = Module['_gitRevision'] = 198348;
|
|
12897
|
+
var _GBIORegisterNames = Module['_GBIORegisterNames'] = 60688;
|
|
12898
|
+
var _GBSavestateMagic = Module['_GBSavestateMagic'] = 75952;
|
|
12899
|
+
var _GBSavestateVersion = Module['_GBSavestateVersion'] = 75956;
|
|
12900
|
+
var _GBA_LUX_LEVELS = Module['_GBA_LUX_LEVELS'] = 105424;
|
|
12901
|
+
var _GBAVideoObjSizes = Module['_GBAVideoObjSizes'] = 149760;
|
|
12902
|
+
var _GBASavestateMagic = Module['_GBASavestateMagic'] = 149536;
|
|
12903
|
+
var _GBASavestateVersion = Module['_GBASavestateVersion'] = 149540;
|
|
12874
12904
|
function invoke_iiiii(index,a1,a2,a3,a4) {
|
|
12875
12905
|
var sp = stackSave();
|
|
12876
12906
|
try {
|
package/dist/mgba.wasm
CHANGED
|
Binary file
|