1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-22 06:28:45 +10:00
collapseos/cvm
Virgil Dupras 45eceaaf61 Remove indirect memory access
I got bitten again, I've over-designed my solution. The last time
it happened, it was that memory mapping thing I was wanting to add.

The indirect memory access feature I was adding was to solve a
specific problem: Allow Collapse OS to cross-compile directly on a
AT28 EEPROM.

It began well. As long as we were staying in the assembler realm,
things were looking good. However, when we got into the xcomp realm
(B260), things became ugly, and I had to creep up indirection where
I didn't want to.

All of this because I wanted to solve my initial problem in a
slightly more generalized way. The broad idea was that these indirect
memory access could allow xcomp into a broad kind of memory-like
devices.

This idea broke on the "@" part of the equation. If I want
indirections to be two-way and allow xcomp to work properly, I have
to add this indirection to FIND (and possibly others) and this just
isn't practical or elegant.

So, I'm taking a step back and accepting that the solution I design
for now is exclusively for the AT28. What I'm thinking is to add a
low-level hook for memory writing, at the assembly level.
2020-12-07 22:34:53 -05:00
..
.gitignore cvm: split stage and forth xcomp units 2020-11-14 15:00:03 -05:00
avra.sh Add alias and switch word types 2020-10-28 15:02:06 -04:00
common.fs Add words |M and |L 2020-12-07 20:11:49 -05:00
forth.c cvm: fix NEWLN behavior 2020-11-17 11:52:54 -05:00
forth.fs Add words |M and |L 2020-12-07 20:11:49 -05:00
Makefile cvm: use Grid in /cvm/forth 2020-11-14 20:08:18 -05:00
README.md cvm: split stage and forth xcomp units 2020-11-14 15:00:03 -05:00
stage.bin Remove indirect memory access 2020-12-07 22:34:53 -05:00
stage.c cvm: split stage and forth xcomp units 2020-11-14 15:00:03 -05:00
stage.fs Add words |M and |L 2020-12-07 20:11:49 -05:00
vm.c Add words |M and |L 2020-12-07 20:11:49 -05:00
vm.h cvm: split stage and forth xcomp units 2020-11-14 15:00:03 -05:00
zasm.sh Add alias and switch word types 2020-10-28 15:02:06 -04:00

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.