diff --git a/include/mtl/tests/fixed.hpp b/include/mtl/tests/fixed.hpp index f330cff..88709b5 100644 --- a/include/mtl/tests/fixed.hpp +++ b/include/mtl/tests/fixed.hpp @@ -31,11 +31,11 @@ public: } // All tests are placed in IWRAM in ARM mode. - GBA_IWRAM ARM_MODE static bool addition(); - GBA_IWRAM ARM_MODE static bool subtraction(); - GBA_IWRAM ARM_MODE static bool multiplication(); - GBA_IWRAM ARM_MODE static bool mult_overflow(); - GBA_IWRAM ARM_MODE static bool division(); + static bool addition(); + static bool subtraction(); + static bool multiplication(); + static bool mult_overflow(); + static bool division(); }; } // namespace test diff --git a/include/mtl/tests/mat.hpp b/include/mtl/tests/mat.hpp index 58c19a2..fed3d58 100644 --- a/include/mtl/tests/mat.hpp +++ b/include/mtl/tests/mat.hpp @@ -36,26 +36,26 @@ public: return "mat_suite"; } - GBA_IWRAM ARM_MODE static bool construction_m2(); + static bool construction_m2(); - GBA_IWRAM ARM_MODE static bool addition_m2(); - GBA_IWRAM ARM_MODE static bool addition_m3(); - GBA_IWRAM ARM_MODE static bool addition_m4(); + static bool addition_m2(); + static bool addition_m3(); + static bool addition_m4(); - GBA_IWRAM ARM_MODE static bool subtraction_m2(); - GBA_IWRAM ARM_MODE static bool subtraction_m3(); - GBA_IWRAM ARM_MODE static bool subtraction_m4(); + static bool subtraction_m2(); + static bool subtraction_m3(); + static bool subtraction_m4(); - GBA_IWRAM ARM_MODE static bool mult_vec_m2(); - GBA_IWRAM ARM_MODE static bool mult_vec_m3(); - GBA_IWRAM ARM_MODE static bool mult_vec_m4(); + static bool mult_vec_m2(); + static bool mult_vec_m3(); + static bool mult_vec_m4(); - GBA_IWRAM ARM_MODE static bool mult_mat_m2(); - GBA_IWRAM ARM_MODE static bool mult_mat_m3(); - GBA_IWRAM ARM_MODE static bool mult_mat_m4(); + static bool mult_mat_m2(); + static bool mult_mat_m3(); + static bool mult_mat_m4(); - GBA_IWRAM ARM_MODE static bool projection_build_m4(); - GBA_IWRAM ARM_MODE static bool projection_calc_m4(); + static bool projection_build_m4(); + static bool projection_calc_m4(); }; } // namespace test diff --git a/include/mtl/tests/vec.hpp b/include/mtl/tests/vec.hpp index 88ed9c4..04d9c05 100644 --- a/include/mtl/tests/vec.hpp +++ b/include/mtl/tests/vec.hpp @@ -63,39 +63,39 @@ public: return a.x == 1 && a.y == 2 && a.z == 3 && a.w == 4; } - GBA_IWRAM ARM_MODE static bool addition_v2(); - GBA_IWRAM ARM_MODE static bool addition_v3(); - GBA_IWRAM ARM_MODE static bool addition_v4(); + static bool addition_v2(); + static bool addition_v3(); + static bool addition_v4(); - GBA_IWRAM ARM_MODE static bool subtraction_v2(); - GBA_IWRAM ARM_MODE static bool subtraction_v3(); - GBA_IWRAM ARM_MODE static bool subtraction_v4(); + static bool subtraction_v2(); + static bool subtraction_v3(); + static bool subtraction_v4(); - GBA_IWRAM ARM_MODE static bool negation_v2(); - GBA_IWRAM ARM_MODE static bool negation_v3(); - GBA_IWRAM ARM_MODE static bool negation_v4(); + static bool negation_v2(); + static bool negation_v3(); + static bool negation_v4(); - GBA_IWRAM ARM_MODE static bool mult_scalar_v2(); - GBA_IWRAM ARM_MODE static bool mult_scalar_v3(); - GBA_IWRAM ARM_MODE static bool mult_scalar_v4(); + static bool mult_scalar_v2(); + static bool mult_scalar_v3(); + static bool mult_scalar_v4(); - GBA_IWRAM ARM_MODE static bool dot_v2(); - GBA_IWRAM ARM_MODE static bool dot_v3(); - GBA_IWRAM ARM_MODE static bool dot_v4(); + static bool dot_v2(); + static bool dot_v3(); + static bool dot_v4(); - GBA_IWRAM ARM_MODE static bool division_scalar_v2(); - GBA_IWRAM ARM_MODE static bool division_scalar_v3(); - GBA_IWRAM ARM_MODE static bool division_scalar_v4(); + static bool division_scalar_v2(); + static bool division_scalar_v3(); + static bool division_scalar_v4(); - GBA_IWRAM ARM_MODE static bool magnitude_sqr_v2(); - GBA_IWRAM ARM_MODE static bool magnitude_sqr_v3(); - GBA_IWRAM ARM_MODE static bool magnitude_sqr_v4(); + static bool magnitude_sqr_v2(); + static bool magnitude_sqr_v3(); + static bool magnitude_sqr_v4(); - GBA_IWRAM ARM_MODE static bool transpose_v2(); - GBA_IWRAM ARM_MODE static bool transpose_v3(); - GBA_IWRAM ARM_MODE static bool transpose_v4(); + static bool transpose_v2(); + static bool transpose_v3(); + static bool transpose_v4(); - GBA_IWRAM ARM_MODE static bool projection_v4(); + static bool projection_v4(); }; } // namespace test