2021-06-29 03:21:21 -!- ChanServ changed mode/#forth -> +o Bogen85 2021-06-29 12:42:20 it's quiet today 2021-06-29 13:41:18 -!- Bogen85 changed mode/#forth -> +o Bogen85 2021-06-29 13:41:21 -!- mark4 changed mode/#forth -> +o mark4 2021-06-29 13:41:32 -!- ChanServ changed mode/#forth -> +o ChanServ 2021-06-29 15:34:53 crc: I'm trying to get krue/avrforth installed on a 328P. I can assemble and upload it, but there seems to be an execution problem when I try to send commands 2021-06-29 16:18:11 hi, I'm wondering if I'm confused about how does> works. I have this code: 2021-06-29 16:18:16 : cs-pin ( ddr out-port bit -- ) 2021-06-29 16:18:16 dup -rot create , , 1 swap lshift swap mset ; 2021-06-29 16:18:59 which does what I expect, causing the defined word to return it's address 2021-06-29 16:20:06 If add a DOES> right after MSET, then I expect it to do the same thing (defined word returns its address) but instead two cells are returned 2021-06-29 16:21:37 the value I expect (the address) preceded by another seemingly random number 2021-06-29 16:40:43 what is `mset` ? 2021-06-29 16:41:31 (assuming we are looking at avrforth; ( don't see create, does>, or mset defined in the sources) 2021-06-29 16:42:25 I am not familiar with avrforth, and the documentation is ... lacking :( 2021-06-29 17:21:17 maw 2021-06-29 17:31:21 maw 2021-06-29 17:31:49 maw crc 2021-06-29 21:16:05 has anyone got any examples of xml parsing in forth? 2021-06-29 21:34:10 FFL has an XML reader. http://irdvo.nl/FFL/docs/xis.html 2021-06-29 21:34:52 ah, i meant implementations 2021-06-29 21:35:21 never knew about the FFL 2021-06-29 21:35:40 found the xml module's source ^^ 2021-06-29 22:12:41 maw