All tests passing

This commit is contained in:
Ben 2020-09-28 00:24:33 -07:00
parent 5ce8cb1388
commit bf4f498080
2 changed files with 78 additions and 2 deletions

View File

@ -137,8 +137,8 @@ module.exports = () => {
// console.log(`event ${name} time ${time} cmd ${command} wrds ${valueWords}`); // console.log(`event ${name} time ${time} cmd ${command} wrds ${valueWords}`);
const view0 = wasm.HEAPU8.subarray(value, value+(valueWords*4)); const view0 = wasm.HEAPU8.subarray(value, value+(valueWords*8));
const view1 = wasm.HEAPU8.subarray(mask, mask+(valueWords*4)); const view1 = wasm.HEAPU8.subarray(mask, mask+(valueWords*8));
let big_value = u8ToBn(view0); let big_value = u8ToBn(view0);
let big_mask = u8ToBn(view1); let big_mask = u8ToBn(view1);

76
test/wasm_any.js Normal file

File diff suppressed because one or more lines are too long