1
0
forked from Mirror/wren

try; update for testing latest

This commit is contained in:
underscorediscovery
2021-04-04 13:54:58 -07:00
parent 981ea4adf1
commit ea684194db
2 changed files with 6 additions and 6 deletions

View File

@ -1229,11 +1229,11 @@ function updateGlobalBufferAndViews(buf) {
}
var STATIC_BASE = 1024,
STACK_BASE = 5271552,
STACK_BASE = 5271568,
STACKTOP = STACK_BASE,
STACK_MAX = 28672,
DYNAMIC_BASE = 5271552,
DYNAMICTOP_PTR = 28512;
STACK_MAX = 28688,
DYNAMIC_BASE = 5271568,
DYNAMICTOP_PTR = 28528;
assert(STACK_BASE % 16 === 0, 'stack must start aligned');
assert(DYNAMIC_BASE % 16 === 0, 'heap must start aligned');
@ -1817,7 +1817,7 @@ var ASM_CONSTS = {
// STATICTOP = STATIC_BASE + 27648;
// STATICTOP = STATIC_BASE + 27664;
/* global initializers */ __ATINIT__.push({ func: function() { ___wasm_call_ctors() } });
@ -1875,7 +1875,7 @@ var ASM_CONSTS = {
}
function _emscripten_get_sbrk_ptr() {
return 28512;
return 28528;
}
function _emscripten_memcpy_big(dest, src, num) {

Binary file not shown.