diff options
author | exegete <nikitf-97@mail.ru> | 2020-10-16 18:21:27 +0300 |
---|---|---|
committer | exegete <nikitf-97@mail.ru> | 2020-10-16 18:21:27 +0300 |
commit | 0cf44154047325a85eb1ab67c4d5b14c09dadfe9 (patch) | |
tree | 85160d1fb9930030939a36b85fc53823b35ea7a5 /ia32 | |
parent | 451e6018dfbe415461896b2f97df019578cefd16 (diff) | |
download | cryptrobber-0cf44154047325a85eb1ab67c4d5b14c09dadfe9.tar cryptrobber-0cf44154047325a85eb1ab67c4d5b14c09dadfe9.tar.xz cryptrobber-0cf44154047325a85eb1ab67c4d5b14c09dadfe9.zip |
else, do until macro
Diffstat (limited to 'ia32')
-rw-r--r-- | ia32/macro.sts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ia32/macro.sts b/ia32/macro.sts index efd062e..3842a5c 100644 --- a/ia32/macro.sts +++ b/ia32/macro.sts @@ -48,3 +48,25 @@ [ fi 0 ?$ ?swap ?! ] + +[ else 0 + branch ?$ # 0 ?. + ?swap ?$ ?swap ?! +] + +[ do 0 + ?$ +] + +[ untilod 0 + 0branch ?. +] + +[ until 0 + 0 = 0branch ?$ # 0 ?. +] + +[ od 0 + branch ?swap ?. + ?$ ?swap ?! +] |