Spike, a RISC-V ISA Simulator
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
216 B

#include <stdbool.h>
#include <stdint.h>
#include "platform.h"
#include "primitives.h"
bool softfloat_eq128( uint64_t a64, uint64_t a0, uint64_t b64, uint64_t b0 )
{
return ( a64 == b64 ) && ( a0 == b0 );
}