Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
s_eq128.c File Reference
#include <stdbool.h>
#include <stdint.h>
#include "platform.h"
Include dependency graph for s_eq128.c:

Go to the source code of this file.

Functions

bool softfloat_eq128 (uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0)
 

Function Documentation

◆ softfloat_eq128()

bool softfloat_eq128 ( uint64_t a64,
uint64_t a0,
uint64_t b64,
uint64_t b0 )

Definition at line 43 of file s_eq128.c.

44{
45
46 return (a64 == b64) && (a0 == b0);
47
48}