2021-08-04 11:06:23 a napia update: the initial assembler is working, and I have started writing some stuff in it. (a little test of a hybrid subroutine & direct threaded definition model) 2021-08-04 11:17:17 Very cool crc can't wait to see how it turns out. 2021-08-04 11:27:31 i'm a little bit confused at the differences between retroforth.org, retroforth.net, forthworks.com:8000, and forthworks.com/retro 2021-08-04 11:27:45 why do all these seemingly similar sites exist? 2021-08-04 11:28:39 ah I see that :8000 is the fossil repo 2021-08-04 11:28:49 but besides that 2021-08-04 11:32:53 redundancies 2021-08-04 11:33:29 retroforth.org is the main server; forthworks.com mirrors the most important files and has my other projects 2021-08-04 11:33:55 retroforth.net is running on an old server; it'll be current with retroforth.org soon 2021-08-04 11:34:04 and forth.works is my dev. server 2021-08-04 11:34:51 gotcha 2021-08-04 11:34:53 thanks 2021-08-04 11:34:53 they're scattered across several data centers around the world to provide some geographic separation 2021-08-04 11:38:21 no problem 2021-08-04 13:04:09 when trying to use socket:create, i'm getting this error: 2021-08-04 13:04:15 Error: device (0007) not found 2021-08-04 13:04:38 would really appreciate any solutions or debugging tips! 2021-08-04 13:12:03 sockets are disabled by default 2021-08-04 13:13:03 rebuild with: 2021-08-04 13:13:04 make OPTIONS="-DENABLE_SOCKETS" 2021-08-04 13:13:54 crc, are there docs about the compile options for how to enable optional features? 2021-08-04 13:14:09 In my spelunking I've come across a few of them, but never found a place where they are all identified 2021-08-04 13:16:45 nothing exhaustive 2021-08-04 13:17:07 the unix build instructions metions the sockets, and overrides for bit depth, stacks, memory sizing 2021-08-04 13:17:20 I'll improve this 2021-08-04 13:17:51 ACTION pushed a change to the error message on sockets w/instructions on building with sockets enabled 2021-08-04 13:20:33 Thanks! 2021-08-04 13:20:37 appreciate the change 2021-08-04 13:21:46 awesome, thanks crc