blob: bc60d0ad4a26bccee1a679986d9caf4a3fdcd1b7 [file] [log] [blame]
Andrew Topef837fa2017-10-04 22:44:25 -07001// Copyright 2017 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5export let value = 0;
6export function set(x) { value = x };
7
8export let a0 = 0;
9export let a1 = 1;
10export let a2 = 2;
11export let a3 = 3;
12export let a4 = 4;
13export let a5 = 5;
14export let a6 = 6;
15export let a7 = 7;
16export let a8 = 8;
17export let a9 = 9;
18export let a10 = 10;
19export let a11 = 11;
20export let a12 = 12;
21export let a13 = 13;
22export let a14 = 14;
23export let a15 = 15;
24export let a16 = 16;
25export let a17 = 17;
26export let a18 = 18;
27export let a19 = 19;