Fix miscounted initializer.
This commit is contained in:
@ -25,7 +25,7 @@ static cell_t *forth_run(cell_t *init_rp) {
|
|||||||
EXTRA_OPCODE_LIST
|
EXTRA_OPCODE_LIST
|
||||||
OPCODE_LIST
|
OPCODE_LIST
|
||||||
#undef XV
|
#undef XV
|
||||||
0, 0, 0,
|
0, 0, 0, 0, 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!init_rp) {
|
if (!init_rp) {
|
||||||
|
|||||||
@ -71,7 +71,7 @@ typedef struct {
|
|||||||
uint8_t flags, name_length;
|
uint8_t flags, name_length;
|
||||||
uint16_t vocabulary;
|
uint16_t vocabulary;
|
||||||
};
|
};
|
||||||
cell_t multi;
|
cell_t multi; // Forces cell alignment throughout.
|
||||||
};
|
};
|
||||||
const void *code;
|
const void *code;
|
||||||
} BUILTIN_WORD;
|
} BUILTIN_WORD;
|
||||||
|
|||||||
Reference in New Issue
Block a user