Missing simulator functions and behavior (#1025)

This commit is contained in:
Richard Knoll
2018-08-02 10:33:05 -07:00
committed by GitHub
parent 6884b2bedf
commit 49cd197cef
3 changed files with 19 additions and 8 deletions

View File

@ -35,6 +35,10 @@ namespace pxsim.basic {
namespace pxsim.control {
export var inBackground = thread.runInBackground;
export function createBuffer(sz: number) {
return pxsim.BufferMethods.createBuffer(sz)
}
export function reset() {
U.userError("reset not implemented in simulator yet")
}