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.
16 lines
354 B
16 lines
354 B
8 years ago
|
#pragma once
|
||
|
|
||
|
#include "../FixedPoints.h"
|
||
|
|
||
|
FIXED_POINTS_BEGIN_NAMESPACE
|
||
|
using SQ3x4 = SFixed<3, 4>;
|
||
|
using SQ7x8 = SFixed<7, 8>;
|
||
|
using SQ15x16 = SFixed<15, 16>;
|
||
|
using SQ31x32 = SFixed<31, 32>;
|
||
|
|
||
|
using SQ1x6 = SFixed<1, 6>;
|
||
|
using SQ1x14 = SFixed<1, 14>;
|
||
|
using SQ1x30 = SFixed<1, 30>;
|
||
|
using SQ1x62 = SFixed<1, 62>;
|
||
|
FIXED_POINTS_END_NAMESPACE
|