aboutsummaryrefslogtreecommitdiff
path: root/softfloat/s_shortShift32Right1Jam.c
blob: db4c304331eaeb2ab9b3fbcd07d96abbf75ffa00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include <stdint.h>
#include "platform.h"
#include "primitives.h"

uint32_t softfloat_shortShift32Right1Jam( uint32_t a )
{

    return a>>1 | ( a & 1 );

}