swapforth VS durexforth

Compare swapforth vs durexforth and see what are their differences.

swapforth

Swapforth is a cross-platform ANS Forth (by jamesbowman)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
swapforth durexforth
5 5
271 222
- -
4.6 6.6
5 months ago 9 months ago
Forth Forth
BSD 3-clause "New" or "Revised" License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

swapforth

Posts with mentions or reviews of swapforth. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-15.
  • Making my own forth implementation
    5 projects | /r/Forth | 15 Jun 2023
  • FPGAs for interpreted programming languages?
    2 projects | /r/FPGA | 25 Nov 2022
  • How many LUT for an 8 bit CPU?
    2 projects | /r/FPGA | 11 Nov 2022
    Thanks! Found the port of this to the board I want :) https://github.com/jamesbowman/swapforth/tree/master/j1a
  • The RISC Deprogrammer
    2 projects | news.ycombinator.com | 28 Oct 2022
    It's a standard thing to do in EE curricula; you normally do it in a one-semester class, and there are literally thousands of open-source synthesizable CPU cores on GitHub now.

    To take two examples to show that designing a CPU is less work than writing a novel:

    - Chuck Thacker's "A Tiny Computer", fairly similar to the Nova, is a page and a half of synthesizable Verilog; it runs at 66 MHz in 200 LUTs of a Virtex-5: https://www.cl.cam.ac.uk/~swm11/examples/bluespec/Tiny3/Thac...

    - James Bowman's J1A is more like Chuck Moore's MuP21 and is about three pages of synthesizable Verilog: https://github.com/jamesbowman/swapforth/blob/master/j1a/ver... and https://github.com/jamesbowman/swapforth/blob/master/j1a/ver.... You can build it with Claire Wolf's iCEStorm (yosys, etc.) and run it on any but Lattice's tiniest FPGAs; it takes up 1162 4-input LUTs.

    I haven't quite done it myself. Last time I played https://nandgame.com/ it took me a couple of hours to play through the hardware design levels. But that's not really "design" in the sense of defining the instruction set (which is also kind of Nova-like), thinking through state machine design, and trying different pipeline depths; you're mostly just doing the kind of logic minimization exercises you'd normally delegate to yosys.

    In https://github.com/kragen/calculusvaporis I designed a CPU instruction set, wrote a simulator for it, wrote and tested some simple programs, designed a CPU at the RTL level, and sketched out gate-level logic designs to get an estimate of how big it would be. But I haven't simulated the RTL to verify it, written it down in an HDL, or breadboarded the circuit, so I'm reluctant to say that this qualifies as "designing a single CPU" either.

  • The J1 Forth CPU
    1 project | /r/Forth | 13 Jan 2021
    Also worth checking is the Swapforth Github repository.

durexforth

Posts with mentions or reviews of durexforth. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-02-17.
  • A Brief Introduction to DurexForth for the Commodore 64
    1 project | dev.to | 9 Jan 2023
    An actively developed version of Forth for the Commodore 64, based on the Forth 2012 core standard.
  • Including files in durexForth (C64)
    1 project | /r/Forth | 19 May 2022
    Just the durexForth manual from github. It's possible I missed something searching through it, but the example programs they have in the repo do have examples of word definitions starting on the first line of the file. Additionally, simply adding a comment to my own code didn't make a difference.
  • Are there any things in math you wish you could rename?
    1 project | /r/math | 6 May 2022
    For the interested, there is a modern open source C64 Forth called DurexForth.
  • C64 Dungeoncrawler - Mockup
    1 project | /r/c64 | 18 Nov 2021
    I know you said you wrote this in Kick Assembler, but I really feel like I should plug 64tass a fantastic cross-assembler. I've used it for my own reverse engineering projects. You might also want to look into DurexForth not because I think you should write this in Forth instead of ASM, but because it might help you to think about how to write things like a quest interpreter.
  • RetroForth 2021.1 Is Released
    6 projects | news.ycombinator.com | 17 Feb 2021
    If you’re into this you may also like durex forth: https://github.com/jkotlinski/durexforth

    A modern C64 variant, as well as CollapseOS which is a Forth based 8-bit OS: https://collapseos.org/

What are some alternatives?

When comparing swapforth and durexforth you can also consider the following projects:

arkam - A Simple Stack VM and Forth

zeptoforth - A not-so-small Forth for Cortex-M

lbForth - Self-hosting metacompiled Forth, bootstrapping from a few lines of C; targets Linux, Windows, ARM, RISC-V, 68000, PDP-11, asm.js.

factor - Factor programming language

subleq - 16-bit SUBLEQ CPU running eForth - just for fun

jonesforth - Mirror of JONESFORTH

gforth - Gforth mirror on GitHub (original is on Savannah)

gforth-raylib - Raylib 3.5 bindings for Gforth. The name is backwards for obvious reasons.

stoneknifeforth - a tiny self-hosted Forth implementation

elfort - A Forth metacompiler that directly emits an executable binary for x86-64 Linux written in Arkam