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

Go to the source code of this file.

Functions

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

Function Documentation

◆ softfloat_le128()

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

Definition at line 43 of file s_le128.c.

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