d_a_tag_event / d_a_tag_chkpoint done (#2133)

* cleanup evtarea

* d_a_tag_chkpoint done

* d_a_tag_event done

* remove asm
This commit is contained in:
TakaRikka
2024-04-15 17:39:47 -07:00
committed by GitHub
parent ae4ef8e69d
commit a0a5d6b00a
35 changed files with 597 additions and 1833 deletions
@@ -7,10 +7,14 @@ namespace std {
return ::fabsf(num);
} */
float fabsf(float num) {
inline float fabsf(float num) {
return ::fabsf(num);
}
inline float sqrt(float x) {
return ::sqrtf(x);
}
/* float abs(float num) {
return ::fabsf(num);
} */