diff options
| author | 2019-03-16 21:58:59 -0400 | |
|---|---|---|
| committer | 2019-03-16 21:58:59 -0400 | |
| commit | 059465d496df3ccf6681e8a1d5aee4be3cc0b7e7 (patch) | |
| tree | d4fb745d01e5c351a4c6646fb886c84cab5e5afe /src/common/uint128.h | |
| parent | Merge pull request #2241 from lioncash/compile-flags (diff) | |
| parent | Corrections, documenting and fixes. (diff) | |
| download | yuzu-059465d496df3ccf6681e8a1d5aee4be3cc0b7e7.tar.gz yuzu-059465d496df3ccf6681e8a1d5aee4be3cc0b7e7.tar.xz yuzu-059465d496df3ccf6681e8a1d5aee4be3cc0b7e7.zip | |
Merge pull request #2129 from FernandoS27/cntpct
Correct CNTPCT from using CPU Cycles to using Clock Cycles
Diffstat (limited to 'src/common/uint128.h')
| -rw-r--r-- | src/common/uint128.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/common/uint128.h b/src/common/uint128.h new file mode 100644 index 000000000..52e6b46eb --- /dev/null +++ b/src/common/uint128.h | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | |||
| 2 | #include <utility> | ||
| 3 | #include "common/common_types.h" | ||
| 4 | |||
| 5 | namespace Common { | ||
| 6 | |||
| 7 | // This function multiplies 2 u64 values and produces a u128 value; | ||
| 8 | u128 Multiply64Into128(u64 a, u64 b); | ||
| 9 | |||
| 10 | // This function divides a u128 by a u32 value and produces two u64 values: | ||
| 11 | // the result of division and the remainder | ||
| 12 | std::pair<u64, u64> Divide128On32(u128 dividend, u32 divisor); | ||
| 13 | |||
| 14 | } // namespace Common | ||