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.
12 lines
159 B
12 lines
159 B
|
|
#include <stdint.h>
|
|
#include "platform.h"
|
|
#include "primitives.h"
|
|
|
|
uint32_t softfloat_shortShift32Right1Jam( uint32_t a )
|
|
{
|
|
|
|
return a>>1 | ( a & 1 );
|
|
|
|
}
|
|
|
|
|