MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / DDIVU

Function DDIVU

include/recomp.h:79–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79static inline void DDIVU(uint64_t a, uint64_t b, uint64_t* quot, uint64_t* rem) {
80 *quot = a / b;
81 *rem = a % b;
82}
83
84typedef uint64_t gpr;
85

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected