view Resources/WebAssembly/ArithmeticTests/app.js @ 3812:abd3a1d114c0 transcoding

transcoding to 1.2.840.10008.1.2.4.51
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 07 Apr 2020 13:54:57 +0200
parents 04873915beaf
children
line wrap: on
line source

function Initialize()
{
  Module.ccall('Run2', // name of C function
               null, // return type
               [], // argument types
               []);

  Module.ccall('Run', // name of C function
               'number', // return type
               [], // argument types
               []);
}


var Module = {
  preRun: [],
  postRun: [ Initialize ],
  print: function(text) {
    console.log(text);
  },
  printErr: function(text) {
    if (text != 'Calling stub instead of signal()')
    {
      document.getElementById("stderr").textContent += text + '\n';
    }
  },
  totalDependencies: 0
};


if (!('WebAssembly' in window)) {
  alert('Sorry, your browser does not support WebAssembly :(');
} else {
}