You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
250 B
13 lines
250 B
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include "platform.h"
|
|
#include "primitives.h"
|
|
|
|
bool softfloat_le128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 )
|
|
{
|
|
|
|
return ( a64 < b64 ) || ( ( a64 == b64 ) && ( a0 <= b0 ) );
|
|
|
|
}
|
|
|
|
|