Less prose; Update i64 example; More options for asc

This commit is contained in:
dcodeIO
2017-12-25 12:08:51 +01:00
parent 4baff99125
commit 5c4bf1af76
14 changed files with 322 additions and 82 deletions

View File

@ -0,0 +1,34 @@
export {
getHi,
getLo,
clz,
ctz,
popcnt,
eqz,
add,
sub,
mul,
div_s,
div_u,
rem_s,
rem_u,
and,
or,
xor,
shl,
shr_s,
shr_u,
rotl,
rotr,
eq,
ne,
lt_s,
lt_u,
le_s,
le_u,
gt_s,
gt_u,
ge_s,
ge_u
} from "../../examples/i64-polyfill/assembly/i64";