commit 67a1982023d18706891a71de771f2b6ea7be19fb parent 90d521dac255d9f22d8c3b40e26c7c99328d4f2e Author: Henry Wilson <m3henry@googlemail.com> Date: Thu, 3 Aug 2017 00:21:06 +0100 Removed flag words Diffstat:
M | compiler.s | | | 18 | ------------------ |
1 file changed, 0 insertions(+), 18 deletions(-)
diff --git a/compiler.s b/compiler.s @@ -239,21 +239,3 @@ verb forth ELSE "ELSE" immediate verb forth THEN "THEN" immediate do forwardresolve endword - -# Flags - -verb forth STRIPFLAGS - const 0x0000FFFFFFFFFFFF - do AND - endword - -verb forth GETFLAGS - const 0x0001000000000000 - do divide - endword - -verb forth SETFLAGS - const 0x0001000000000000 - do mult - do OR - endword