commit 680f048fdcac752079cc1894bad964ca02cef385
parent f03106b5b12bb00ae10c0029c5ab5648dbf1cc95
Author: Virgil Dupras <hsoft@hardcoded.net>
Date: Wed, 1 Jun 2022 13:51:40 -0400
Little asm.py cleanup
Diffstat:
1 file changed, 0 insertions(+), 9 deletions(-)
diff --git a/asm.py b/asm.py
@@ -187,14 +187,6 @@ def _opwriter_():
callwr(words[b'c,'])
exitwr()
-def _compile_():
- litwr(ops[b'_call_'])
- callwr(words[b'c,'])
- name = nextt()
- off = words[name]
- litwr(off)
- callwr(words[b','])
-
def _callop_():
intwr(ops[b'_call_'])
@@ -222,7 +214,6 @@ special = {
b'value': _value_,
b'alias': _alias_,
b'opwriter': _opwriter_,
- b'compile': _compile_,
b'callop': _callop_,
b'pspushop': _pspushop_,
b'exitop': _exitop_,