mastodon.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
The original server operated by the Mastodon gGmbH non-profit

Administered by:

Server stats:

329K
active users

mcc

Okay. So this explains my segfault! I can now run in pforth.

xoxo.zone/@clarity/11378379402

I accidentally wrote on one line `partial TRUE !` ; correct would be `TRUE partial !`. All variable assignments in Forth are done with pointer dereferences, so the wrong order was like trying to write to memory address TRUE (-1). It is as if C++ allowed you to write "true = x;" by accident instead of "x = true;" and write the address of x to 0x1

I am unblocked, but still can't do jack shit in gforth

XOXO Zoneclarity flowers (@clarity@xoxo.zone)@mcc@mastodon.social you have `partial TRUE !` and `TRUE partial !`, I forget which, but one of those is wrong (I think the latter is correct?). This is your invalid memory access (you're trying to set the data stored at 0x01)