blob: 74fd738da04d973ae9d07d7d5f690d31b0b4f8e5 (
plain)
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
|
/* float.h header file for the floating-point constant module of
* the Netwide Assembler
*
* The Netwide Assembler is copyright (C) 1996 Simon Tatham and
* Julian Hall. All rights reserved. The software is
* redistributable under the license given in the file "LICENSE"
* distributed in the NASM archive.
*/
#ifndef NASM_FLOAT_H
#define NASM_FLOAT_H
#include "nasm.h"
enum float_round {
FLOAT_RC_NEAR,
FLOAT_RC_ZERO,
FLOAT_RC_DOWN,
FLOAT_RC_UP,
};
int float_const(const char *string, int sign, uint8_t *result, int bytes,
efunc error);
int float_option(const char *option);
#endif
|