public static void Not(Forth f) { bool b = f.PopBool(); f.PushBool(!b); }
public static void JumpIfFalse(Forth f) { int target = (int)f.PopInt64(); bool flag = f.PopBool(); if (!flag) f.rStack.Top = target; }