summaryrefslogtreecommitdiff
path: root/scripts/test/env.js
blob: af2cce1c7d197a927d8f3fbb5f8bb2fad9f8b584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var tempRet0 = 0;

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

export function getTempRet0() {
  return tempRet0;
}

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