xForth icon indicating copy to clipboard operation
xForth copied to clipboard

Experimental Forth cross compiler for tiny devices

Results 32 xForth issues
Sort by recently updated
recently updated
newest added

Edited for atega328p (edited nucleus.fth for correct interrupt vectors size and changet position of return stack to end of ram and data stack to 3/4 od ram, edited params.fth for...

without _swap_ in the beginig of _while,_ lbforth thows segmentation fault. Without _swap_ the execution token of _branch?,_ is pushet to return stack and _if,_ doesnt find this execution token...

This doesn't work: ``` 1 constant foo foo allot ```

I got a STM8S207RBT6 board. It was recommended by @TG9541, thanks! It's a performance STM8S with plenty of room: 128K flash, 6K RAM, and 2K EEPROM.

target

Add library for traditional blocks. Maybe adjust block size as required by flash sectors.

feature

Add optional library with an interpreter. Just interpretation, no compilation mode. Depends on UART (#52), or other character I/O.

feature

USB stack. Phew!

feature

Optional library for interrupt handling.

feature

Optional library for digital I/O. Unclear what kind of abstraction might work across many targets.

feature