Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Virgil Dupras a9cb5a42d4 Have RDLN spit newlines more consistently пре 3 година
..
.gitignore cvm: split stage and forth xcomp units пре 3 година
Makefile cvm: use Grid in /cvm/forth пре 3 година
README.md cvm: split stage and forth xcomp units пре 3 година
avra.sh Add alias and switch word types пре 3 година
common.fs Integrate RDLN input buffer into sysvars пре 3 година
forth.c cvm: fix NEWLN behavior пре 3 година
forth.fs Make BLK@* and BLK!* into ialiases пре 3 година
stage.bin Have RDLN spit newlines more consistently пре 3 година
stage.c cvm: split stage and forth xcomp units пре 3 година
stage.fs Make BLK@* and BLK!* into ialiases пре 3 година
vm.c Add words |M and |L пре 3 година
vm.h Integrate RDLN input buffer into sysvars пре 3 година
zasm.sh Add alias and switch word types пре 3 година

README.md

C VM

This is a C implementation of Collapse OS’ native words. It allows Collapse OS to run natively on any POSIX environment.

Requirements

You need curses to build the forth executable.

Build

Running make will yield forth and stage executables.

Usage

To play around Collapse OS, you'll want to run ./forth. Refer to doc/intro.txt for help.

The program is a curses interface with a limited, fixed size so that it can provide a AT-XY interface. If you wish to change the size of that screen, you need to modify COLS and LINES in both forth.c and forth.fs.

You can get a REPL by launching the program with rlwrap(1) like this:

rlwrap -e '' -m -S '> ' ./forth /dev/stdin

Problems?

If the forth executable works badly (hangs, spew garbage, etc.), it's probably because you've broken your bootstrap binary. It's easy to mistakenly break. To verify if you've done that, look at your git status. If stage.bin is modified, try resetting it and then run make clean all. Things should go better afterwards.

A modified blkfs can also break things (although even with a completely broken blkfs, you should still get to prompt), you might want to run make pack to ensure that the blkfs file is in sync with the contents of the blk/ folder.

If that doesn't work, there's also the nuclear option of git reset --hard and git clean -fxd.

If that still doesn't work, it might be because the current commit you're on is broken, but that is rather rare.