summaryrefslogtreecommitdiff
path: root/test/hello_world.2asm.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello_world.2asm.js')
-rw-r--r--test/hello_world.2asm.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/hello_world.2asm.js b/test/hello_world.2asm.js
new file mode 100644
index 000000000..c11126e24
--- /dev/null
+++ b/test/hello_world.2asm.js
@@ -0,0 +1,25 @@
+function asmFunc(global, env, buffer) {
+ "use asm";
+ var HEAP8 = new global.Int8Array(buffer);
+ var HEAP16 = new global.Int16Array(buffer);
+ var HEAP32 = new global.Int32Array(buffer);
+ var HEAPU8 = new global.Uint8Array(buffer);
+ var HEAPU16 = new global.Uint16Array(buffer);
+ var HEAPU32 = new global.Uint32Array(buffer);
+ var HEAPF32 = new global.Float32Array(buffer);
+ var HEAPF64 = new global.Float64Array(buffer);
+ var Math_imul = global.Math.imul;
+ var Math_fround = global.Math.fround;
+ var Math_abs = global.Math.abs;
+ var Math_clz32 = global.Math.clz32;
+ function add(x, y) {
+ x = x | 0;
+ y = y | 0;
+ return x + y | 0 | 0;
+ }
+
+ return {
+ add: add
+ };
+}
+