1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/*
** Copyright (C) 2018 Martin Brain
**
** See the file LICENSE for licensing information.
*/
/*
** numberOfRoundingModes.h
**
** Martin Brain
** martin.brain@cs.ox.ac.uk
** 20/05/15
**
** We need a better solution...
**
*/
#ifndef SYMFPU_NUMBEROFROUNDINGMODES
#define SYMFPU_NUMBEROFROUNDINGMODES
namespace symfpu {
// Currently support 5 rounding modes
// TODO : This shouldn't be a preprocessor constant
#define SYMFPU_NUMBER_OF_ROUNDING_MODES 5
}
#endif
|