summaryrefslogtreecommitdiff
path: root/src/fixed_point.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fixed_point.cpp')
-rw-r--r--src/fixed_point.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/fixed_point.cpp b/src/fixed_point.cpp
new file mode 100644
index 0000000..3e67e77
--- /dev/null
+++ b/src/fixed_point.cpp
@@ -0,0 +1,9 @@
+#include "fixed_point.h"
+
+fp_t fp_t::operator+(const fp_t& other) const {
+ return {raw + other.raw};
+}
+
+bool fp_t::operator==(const fp_t& other) const {
+ return raw == other.raw;
+}