tabemann

Results 118 comments of tabemann

Sorry for missing your issue! I have been rather preoccupied lately with getting zeptoforth working on the RP2040, and have not been checking on Github lately! By the way, neither...

I just checked the man page for picocom, and the problem is that zeptoforth assumes delete is DEL, not BS, which is why delete is not working for you.

zeptoforth does not pretend to be standards-compliant, even if much of the time it does approximate the standards, and I should note, and `0 LOAD` means to load block 0...

I should note that `."` does not work when `STATE` is 0, which is per standard. I also should warn you that while zeptoforth is pretty close to ANS, it...

If you want to print a constant string at the REPL, use `.(`, which of course is closed with `)`, to print it, because `.(` is immediate.

I should note that while zeptoforth does support `S"` and `C"` at the REPL, these are highly non-standard, and impose their own restrictions (i.e. because it stores the strings in...

I have made a new release, 0.40.0, which adds `."` and `.\"` at the REPL level, so one is no longer required to be in a compilation state to use...

> I have an RP2040 Pico board running MicroPython. I am trying to install ZeptoForth. > > I have followed the instructions which are basically the same as for installing...

> I have had this problem before intermittently when copying the file from my Raspberry Pi to the Pico. The file copies but the drive does not unmount at the...

Having USB terminal support for zeptoforth is one of those nice-to-haves, but I am currently working on other things, such as adding SDHC card support and FAT32, as well as...