7 lines
244 B
TypeScript
Raw Normal View History

/// <reference path="../../portable-assembly.d.ts" />
/// <reference path="./binaryen-c.d.ts" />
2017-09-28 13:08:25 +02:00
// Raw memory accesses to Binaryen memory
2017-12-04 02:00:48 +01:00
declare function store<T = u8>(ptr: usize, val: T): void;
declare function load<T = u8>(ptr: usize): T;