mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Factor out more shared math operations between RGBASM and RGBLINK
This commit is contained in:
@@ -8,8 +8,17 @@
|
||||
int32_t op_divide(int32_t dividend, int32_t divisor);
|
||||
int32_t op_modulo(int32_t dividend, int32_t divisor);
|
||||
int32_t op_exponent(int32_t base, uint32_t power);
|
||||
|
||||
int32_t op_shift_left(int32_t value, int32_t amount);
|
||||
int32_t op_shift_right(int32_t value, int32_t amount);
|
||||
int32_t op_shift_right_unsigned(int32_t value, int32_t amount);
|
||||
|
||||
int32_t op_neg(int32_t value);
|
||||
|
||||
int32_t op_high(int32_t value);
|
||||
int32_t op_low(int32_t value);
|
||||
|
||||
int32_t op_bitwidth(int32_t value);
|
||||
int32_t op_tzcount(int32_t value);
|
||||
|
||||
#endif // RGBDS_OP_MATH_HPP
|
||||
|
||||
Reference in New Issue
Block a user