aboutsummaryrefslogtreecommitdiff
path: root/ABC/Machine/Instructions.icl
diff options
context:
space:
mode:
authorCamil Staps2017-07-19 12:49:30 +0000
committerCamil Staps2017-07-19 12:49:30 +0000
commite896db3386454b9e079e9adfc19c1e5b4d8735f9 (patch)
tree65846e9d5c667aaee1e0c5c83689927aededcf24 /ABC/Machine/Instructions.icl
parentAdd negI (diff)
Add notB
Diffstat (limited to 'ABC/Machine/Instructions.icl')
-rw-r--r--ABC/Machine/Instructions.icl4
1 files changed, 4 insertions, 0 deletions
diff --git a/ABC/Machine/Instructions.icl b/ABC/Machine/Instructions.icl
index 54e7ebd..37c436d 100644
--- a/ABC/Machine/Instructions.icl
+++ b/ABC/Machine/Instructions.icl
@@ -396,3 +396,7 @@ remI st=:{bstack}
subI :: State -> State
subI st=:{bstack}
= {st & bstack=bs_subI bstack}
+
+notB :: State -> State
+notB st=:{bstack}
+ = {st & bstack=bs_notB bstack}