mirror of
https://github.com/forth-ev/VolksForth.git
synced 2025-02-16 21:30:59 +00:00
Move fix for 0> from ans-shim.fth to vf-cbm-core.fth
This commit is contained in:
parent
9c3e60d0bf
commit
b77a9c5ebc
@ -648,7 +648,7 @@ Code u< ( u1 u2 -- flag)
|
||||
|
||||
: > ( n1 n2 -- flag) swap < ;
|
||||
|
||||
: 0> ( n -- flag) negate 0< ;
|
||||
: 0> ( n -- flag) dup 0< swap 0= or not ;
|
||||
|
||||
: 0<> ( n -- flag) 0= not ;
|
||||
|
||||
|
@ -48,8 +48,6 @@
|
||||
: :noname here ['] tuck @ , 0 ] ;
|
||||
|
||||
: <> = not ;
|
||||
\ Wrong for -32768: : 0> ( n -- flag) negate 0< ;
|
||||
: 0> dup 0< swap 0= or not ;
|
||||
|
||||
: 2>r r> -rot swap >r >r >r ;
|
||||
: 2r> r> r> r> swap rot >r ;
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
ans-shim.fth CHAR exists 0> exists
|
||||
|
||||
ans-shim.fth CHAR exists
|
||||
prelimtest.fth
|
||||
|
||||
CR CR SOURCE TYPE ( Preliminary test ) CR
|
||||
|
Loading…
x
Reference in New Issue
Block a user