From 72766e46c585ffaa58da8399cb596dcc21501929 Mon Sep 17 00:00:00 2001 From: Koichi Nakamura Date: Sun, 10 Jan 2021 19:59:54 +0900 Subject: [PATCH] Fix comment --- bootstrap.fs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bootstrap.fs b/bootstrap.fs index 5027905..73584b4 100644 --- a/bootstrap.fs +++ b/bootstrap.fs @@ -54,7 +54,10 @@ l! \ '|' ( a b -- c ) c = (a | b) \ '^' ( a b -- c ) c = (a ^ b) \ '<' ( a b -- c ) c = (a < b) +\ 'u' ( a b -- c ) c = (a unsigned< b) \ '=' ( a b -- c ) c = (a == b) +\ 'v' ( -- a-addr u ) argv and argc +\ 'V' ( -- c-addr ) Version text \ The 1st stage interpreter repeats execution of k, f and x. \ There following line is an example program of planckforth