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