summaryrefslogtreecommitdiff
path: root/scripts/test/env.js
blob: 0eb3f06f48f2c6c951cfdd5de6b870a7e1c120ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

export const FUNCTION_TABLE = [];

var tempRet0 = 0;

export function setTempRet0(x) {
  tempRet0 = x;
}

export function getTempRet0() {
  return tempRet0;
}

export const memoryBase = 0;
export const tableBase = 0;