Fixed compilation error
[bochs-mirror.git] / fpu / tag_w.h
blobab12a5d44853a528fd11c0f65ce968c3d114f825
1 /////////////////////////////////////////////////////////////////////////
2 // $Id: tag_w.h,v 1.7 2007/03/23 21:27:13 sshwarts Exp $
3 /////////////////////////////////////////////////////////////////////////
4 //
5 // Copyright (c) 2003 Stanislav Shwartsman
6 // Written by Stanislav Shwartsman [sshwarts at sourceforge net]
7 //
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Lesser General Public
10 // License as published by the Free Software Foundation; either
11 // version 2 of the License, or (at your option) any later version.
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 /////////////////////////////////////////////////////////////////////////
24 #ifndef _TAG_W_H
25 #define _TAG_W_H
27 /* Tag Word */
28 #define FPU_Tag_Valid 0x00
29 #define FPU_Tag_Zero 0x01
30 #define FPU_Tag_Special 0x02
31 #define FPU_Tag_Empty 0x03
33 #endif