1
0
Fork 0
forked from fun/fun

More math opcode Fun. (0.37.44)

This commit is contained in:
Johannes Findeisen 2026-01-03 04:10:11 +01:00
commit 4a6903e58a
16 changed files with 546 additions and 2 deletions

View file

@ -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"