diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-10-21 23:55:16 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-10-21 23:55:16 +0100 |
commit | 6161a352e020a68775877a2d61af09c8efc62355 (patch) | |
tree | ce1e7dc8abf558218b220f77bbc6c578b592086a /src/runtime.h | |
parent | ae7f0efc858510034dddee5bd1a02a6ec3788c32 (diff) | |
download | ovm-6161a352e020a68775877a2d61af09c8efc62355.tar.gz ovm-6161a352e020a68775877a2d61af09c8efc62355.tar.bz2 ovm-6161a352e020a68775877a2d61af09c8efc62355.zip |
Implemented vm routines for OP_OR_*
Diffstat (limited to 'src/runtime.h')
-rw-r--r-- | src/runtime.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/runtime.h b/src/runtime.h index 4a2f849..d757e36 100644 --- a/src/runtime.h +++ b/src/runtime.h @@ -111,4 +111,14 @@ static const not_f NOT_ROUTINES[] = { [OP_NOT_WORD] = vm_not_word, }; +void vm_or_byte(vm_t *); +void vm_or_hword(vm_t *); +void vm_or_word(vm_t *); +typedef void (*or_f)(vm_t *); +static const or_f OR_ROUTINES[] = { + [OP_OR_BYTE] = vm_or_byte, + [OP_OR_HWORD] = vm_or_hword, + [OP_OR_WORD] = vm_or_word, +}; + #endif |