diff options
Diffstat (limited to 'src/runtime.h')
-rw-r--r-- | src/runtime.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/runtime.h b/src/runtime.h index 3e4c295..5ee5f9b 100644 --- a/src/runtime.h +++ b/src/runtime.h @@ -83,6 +83,10 @@ static const push_reg_f PUSH_REG_ROUTINES[] = { [OP_PUSH_REGISTER_WORD] = vm_push_word_register, }; +data_t vm_pop_byte(vm_t *); +data_t vm_pop_hword(vm_t *); +data_t vm_pop_word(vm_t *); + data_t vm_mov_byte(vm_t *, byte); data_t vm_mov_hword(vm_t *, byte); data_t vm_mov_word(vm_t *, byte); @@ -94,9 +98,6 @@ static const mov_f MOV_ROUTINES[] = { [OP_MOV_WORD] = vm_mov_word, }; -data_t vm_pop_byte(vm_t *); -data_t vm_pop_hword(vm_t *); -data_t vm_pop_word(vm_t *); void vm_not_byte(vm_t *); void vm_not_hword(vm_t *); |