-
Figure out how to make it Multitask, especially light weight multi-tasks.
- [ ] See TODO-28-MULTI
-
-
Thank you so much for creating this.
I am a long time software developer, who just started a master's degree in EE Digital design a month ago. Large number of tiny Forth CPU's are of interest to …
-
Mitch Bradley has ported C Forth to ESP32.
* https://github.com/MitchBradley/cforth/commit/b3c56890599353149275ece80977d9fbcad844c8
I have begun testing. My build steps on Ubuntu;
* https://…
quozl updated
3 years ago
-
Using the following factorial definition as a test:
```
: fac dup 1 = if drop 1 else dup 1- recurse * then ;
```
"5 fac ." returns 20 as a result which is incorrect.
Redefining recurse (and fa…
-
If I had infinite time, I'd create a 128-bit Forth that used SIMD instructions to manipulate 4 values at all times, the "cell" size would be 128-bits containing 4 32-bit values and maybe sometimes 2 6…
-
I have implemented Forth interpreter in JavaScript: https://github.com/drom/forth
Can be used with node.js (cli / library / streams) or in the browser.
Goal: to be ANS94 / Forth2012 compatible.
-
Hello,
Something goes wrong in the following code:
```
here .
create val 8 allot
here .
```
The value of the 2nd 'here' should be 8 bigger than the value of the 1st 'here'. But the difference a…
-
I thought that 3.3v output PIN cab be used to drive some other sensor or something like that,but it doesn't have enough juice to drive sensors.
So I put the pin to good use by connecting to GPIO of E…
-
There is a test suite "forth2012-test-suite" .
Its a little complex to run - and appears to be failing. Will address each fail and fix below
This comment is the META - updated frequently - you …