diff options
Diffstat (limited to 'js/IntegerOp/DFLIPFLOP.js')
-rw-r--r-- | js/IntegerOp/DFLIPFLOP.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/js/IntegerOp/DFLIPFLOP.js b/js/IntegerOp/DFLIPFLOP.js index 5a703f00..944bddc4 100644 --- a/js/IntegerOp/DFLIPFLOP.js +++ b/js/IntegerOp/DFLIPFLOP.js @@ -90,6 +90,7 @@ function DFLIPFLOP() { model.rpar = scs_m; gr_i = []; this.x = standard_define([2,3],model,[],gr_i); + return new BasicBlock(this.x); } DFLIPFLOP.prototype.details = function DFLIPFLOP() { return this.x; @@ -98,5 +99,6 @@ function DFLIPFLOP() { } DFLIPFLOP.prototype.set = function DFLIPFLOP() { this.x = arg1; + return new BasicBlock(this.x); } } |