diff options
Diffstat (limited to 'test/hello_world.2asm.js')
-rw-r--r-- | test/hello_world.2asm.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/hello_world.2asm.js b/test/hello_world.2asm.js new file mode 100644 index 000000000..d3996fb49 --- /dev/null +++ b/test/hello_world.2asm.js @@ -0,0 +1,9 @@ +function asmFunc() { + function add(x, y) { + x = x | 0; + y = y | 0; + return x + y | 0; + } + +} + |