ieee754d.c (2209bcb1310ffa9ee1af12573f1413581c712b15) ieee754d.c (cd8ee345e8affceaa3f846012db7eb799a6d918f)
1/*
2 * Some debug functions
3 *
4 * MIPS floating point support
5 *
6 * Copyright (C) 1994-2000 Algorithmics Ltd.
7 *
8 * This program is free software; you can distribute it and/or modify it

--- 11 unchanged lines hidden (view full) ---

20 *
21 * Nov 7, 2000
22 * Modified to build and operate in Linux kernel environment.
23 *
24 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
25 * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
26 */
27
1/*
2 * Some debug functions
3 *
4 * MIPS floating point support
5 *
6 * Copyright (C) 1994-2000 Algorithmics Ltd.
7 *
8 * This program is free software; you can distribute it and/or modify it

--- 11 unchanged lines hidden (view full) ---

20 *
21 * Nov 7, 2000
22 * Modified to build and operate in Linux kernel environment.
23 *
24 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
25 * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
26 */
27
28#include <linux/kernel.h>
28#include <linux/types.h>
29#include <linux/printk.h>
29#include "ieee754.h"
30
31#define DP_EBIAS 1023
32#define DP_EMIN (-1022)
33#define DP_EMAX 1023
34#define DP_FBITS 52
35
36#define SP_EBIAS 127

--- 100 unchanged lines hidden ---
30#include "ieee754.h"
31
32#define DP_EBIAS 1023
33#define DP_EMIN (-1022)
34#define DP_EMAX 1023
35#define DP_FBITS 52
36
37#define SP_EBIAS 127

--- 100 unchanged lines hidden ---