Bookmarked "toread" -- it looks to be a really insightful look at byte-code that compares and analyzes a bunch of language implementations.
What an interesting guy. He runs a blog masquerading as a mailing list (that's what this link is from: "Kragen-tol" is a mailing list for "Kragen thinking out loud") which looks to be full of lots of interesting and incredibly detailed essays across a wide range of subjects.
His homepage (http://www.canonical.org/~kragen/) doesn't mention the mailing list at all (?), but it does have a bunch of other intriguing and random things, like a list of all the people he knows, for the purpose of telling search engines about it: http://www.canonical.org/~kragen/pik/
I am not sure about that insightful. He complains that literals on the F21 take two instructions. The Forth way is to define constants you need often like this:
: 1 1 ;
(that denies a function called 1 that 'returns' the integer 1)
With that function in place (3 instructions, I guess), you can replace n usages of the literal 1 (2n instructions) by n calls of that function (n instructions), for a total of n+3 instructions. So, this pays of if n>=3.
Oh, and subroutine calls are cheap on Forth hardware (one cycle for a call and zero cycles for a return is easily achievable)
With the R4RS library it only needs 13KiB ROM and they claim you can run programs in less than 5KiB RAM. And it comes with a real-time GC. Not hand-coded assembler small, but the kind of development, testing and prototyping environment you get with Scheme is awesome.
The MuP21 sounds really impressive. 6000 transistors including video and DRAM is hard to believe.
The Parallax BASIC Stamp used NRZ encoded bit tokens. The ROM for the interpreter was 1K words (14 bit words) as I recall. It is really efficient in terms of space.
Build a bit aligned FPGA CPU would be pretty cool, and using a serial EEPROM quite efficient in terms of I/O busses but like the PDP-8/S probably very very slow.
What an interesting guy. He runs a blog masquerading as a mailing list (that's what this link is from: "Kragen-tol" is a mailing list for "Kragen thinking out loud") which looks to be full of lots of interesting and incredibly detailed essays across a wide range of subjects.
His homepage (http://www.canonical.org/~kragen/) doesn't mention the mailing list at all (?), but it does have a bunch of other intriguing and random things, like a list of all the people he knows, for the purpose of telling search engines about it: http://www.canonical.org/~kragen/pik/