3 files changed, 2 insertions(+), 6 deletions(-)
M README
D etc/hosts
M src,vm.c
M README => README +1 -1
@@ 3,7 3,7 @@
|/ | | | |/ \/ using a custom branch of Retro to implement
|\ | | | |\ /\ a non-POSIX userland on a Unix host.
---------+---------+---------+---------+---------+---------+----
-#.0>##%.
+
File Naming Conventions
-----------------------
[type,]filename
D etc/hosts => etc/hosts +0 -4
@@ 1,4 0,0 @@
-127.0.0.1 localhost
-::1 localhost
-212.111.43.252 forthworks.com
-
M src,vm.c => src,vm.c +1 -1
@@ 799,7 799,7 @@ void inst_sh() {
CELL y = TOS;
CELL x = NOS;
if (TOS < 0)
- NOS = NOS << (TOS * -1);
+ NOS = NOS << (0 - TOS);
else {
if (x < 0 && y > 0)
NOS = x >> y | ~(~0U >> y);