I am experimenting with FlashForth on the Atmega 328P and find it both fun and easy to use. One of the things I am doing is to convert an old Finite State Machine implementation to FlashForth. However, I am having trouble with this, getting an unexpected behavour. After some troubleshooting I have located the problem to an unexpected behaviour with the words CREATE and >BODY. Basically, if I create a word like this: create test-word 1 , 2 , 3 , and then execute: test-word u. ' test-word >body u....