More math opcode Fun. (0.37.44)
This commit is contained in:
parent
c062b685e1
commit
4a6903e58a
16 changed files with 546 additions and 2 deletions
6
src/vm.c
6
src/vm.c
|
|
@ -672,6 +672,8 @@ void vm_run(VM *vm, Bytecode *entry) {
|
|||
#include "vm/math/clamp.c"
|
||||
#include "vm/math/max.c"
|
||||
#include "vm/math/min.c"
|
||||
#include "vm/math/fmax.c"
|
||||
#include "vm/math/fmin.c"
|
||||
#include "vm/math/mod.c"
|
||||
#include "vm/math/pow.c"
|
||||
#include "vm/math/floor.c"
|
||||
|
|
@ -687,6 +689,10 @@ void vm_run(VM *vm, Bytecode *entry) {
|
|||
#include "vm/math/sqrt.c"
|
||||
#include "vm/math/random_int.c"
|
||||
#include "vm/math/random_seed.c"
|
||||
#include "vm/math/gcd.c"
|
||||
#include "vm/math/lcm.c"
|
||||
#include "vm/math/isqrt.c"
|
||||
#include "vm/math/sign.c"
|
||||
|
||||
#include "vm/os/env.c"
|
||||
#include "vm/os/env_all.c"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue