Block: Or



PIC




Inports


In1



In2






Outports


Out




Description:

Logical OR block.

Implementations:
FiP8 8 Bit Fixed Point Implementation
FiP16 16 Bit Fixed Point Implementation
FiP32 32 Bit Fixed Point Implementation

Implementation: FiP8


Name FiP8
ID 256
Revision 0.1
C lename Or_FiP8.c
H lename Or_FiP8.h

8 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     int8          *In1; 
     int8          *In2; 
     int8          Out; 
} OR_FIP8;

Implementation: FiP16


Name FiP16
ID 257
Revision 0.1
C lename Or_FiP16.c
H lename Or_FiP16.h

16 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     int16         *In1; 
     int16         *In2; 
     int16         Out; 
} OR_FIP16;

Implementation: FiP32


Name FiP32
ID 258
Revision 0.1
C lename Or_FiP32.c
H lename Or_FiP32.h

32 Bit Fixed Point Implementation

Data Structure:

typedef struct { 
     uint16        ID; 
     int32         *In1; 
     int32         *In2; 
     int32         Out; 
} OR_FIP32;