holy shit thats a lot of changed to asmrigs

This commit is contained in:
2026-01-17 23:45:36 +02:00
parent ee7735b610
commit fe1273e539
21 changed files with 645 additions and 197 deletions

26
asmrigs/libbr/math.s Normal file
View File

@@ -0,0 +1,26 @@
public min
min:
pop b
pop c
min a, b, c
ret
public max
max:
pop b
pop c
max a, b, c
ret
public abs
abs:
pop b
abs a, b, c
ret
public sign
sign:
pop b
sign a, b
ret