• Any love for Forth?!

    From lodger@21:1/168 to All on Tue Apr 1 20:27:11 2025
    In the past few years I've picked up a teenage interest of mine and
    eventually started to learn the Forth programming language. I have tried
    many times before, but thanks to a neat "new retro" 8bit computer called
    "Mynor My4TH" (which features a CPU made of discrete 74xx logic ICs) I eventually managed. This little "homebrew" kit computer has the Forth 2012 core

    standard built in and features a bit-banging I2C interface.

    Since then, I've written a fair amount of code (mind you, I'm still just a beginner) and so I wonder: are thereany retro computing people here who are also fond of the Forth programming language?!

    Greetings, Niels Haedecke

    --- MBSE BBS v1.1.1 (Linux-aarch64)
    * Origin: Wintermute BBS - Duesseldorf, Germany (21:1/168)
  • From tenser@21:1/101 to lodger on Sun Apr 6 02:12:48 2025
    On 01 Apr 2025 at 08:27p, lodger pondered and said...

    Since then, I've written a fair amount of code (mind you, I'm still just
    a beginner) and so I wonder: are thereany retro computing people here
    who are also fond of the Forth programming language?!

    Ha! Funny you should mention that; we have a custom bootloader
    that we wrote for doing bringup on our custom server boards. We
    usually want to upload a kernel and a ramdisk over a UART and get
    it to start running, and we've got a syntax for receiving the
    kernel, expanding it (we send it over the UART compressed because
    we're not masochists), loading it into memory so that its various
    bits and pieces are where they're expected to be once it starts
    running and the BSS is zeroed and so forth, and then jumping into
    its entry point. But I was dissatisfied with how it works; in
    particular, the kernel you upload is already in the ramdisk you
    send, so sending both seems kind of silly, and when you jump into
    the kernel (which, from the hardware's perspective just looks like
    a function call) you need to pass the physical address and size of
    the ramdisk as parameters, but our syntax didn't really support
    that.

    So I rewrote it, implementing a read-only version of the filesystem
    that we use for the ramdisk (UFS, in our case) _and_ introducing a
    stack and the means to duplicate the element at the top of the stack,
    so that we can send everything in one go. When I demoed it to some
    colleagues they said, "why not just implement a FORTH interpreter?"
    so I rewrote it recently. In particular, when you call into the
    I mean, maybe.

    --- Mystic BBS v1.12 A48 (Linux/64)
    * Origin: Agency BBS | Dunedin, New Zealand | agency.bbs.nz (21:1/101)