Added some math opcodes. (0.37.42)
This commit is contained in:
parent
2a20b6f01a
commit
194c06e4aa
14 changed files with 413 additions and 2 deletions
4
src/vm.c
4
src/vm.c
|
|
@ -674,6 +674,10 @@ void vm_run(VM *vm, Bytecode *entry) {
|
|||
#include "vm/math/min.c"
|
||||
#include "vm/math/mod.c"
|
||||
#include "vm/math/pow.c"
|
||||
#include "vm/math/floor.c"
|
||||
#include "vm/math/ceil.c"
|
||||
#include "vm/math/trunc.c"
|
||||
#include "vm/math/round.c"
|
||||
#include "vm/math/random_int.c"
|
||||
#include "vm/math/random_seed.c"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue