/** Pointer to the next most recently defined word in the dictionary. */
struct word_t const* link;
/** A collection of flags describing attributes of the word. */
- //struct {
- // val_t f_hidden : 1; /*< Flag if this word should be hidden from the interpreter */
- // val_t f_immed : 1; /*< flag if this word should be executed at compile time */
- // val_t padding : 6; /*< Pads the flags to 8-bits */
- // val_t codesize : CODE_SZ_BITS; /*< The length of the bytecode section of the word */
- //} flags;
flags_t flags;
/** Pointer to the null terminated string that holds the name of the word. */
char const* name;