Deleted Added
sdiff udiff text old ( 6722:93f1e520447d ) new ( 7177:5f19e5b67864 )
full compact
1/*
2 * Copyright (c) 2007-2008 The Florida State University
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

48typedef uint32_t FloatRegBits;
49typedef float FloatReg;
50
51// cop-0/cop-1 system control register
52typedef uint64_t MiscReg;
53
54// Constants Related to the number of registers
55const int NumIntArchRegs = NUM_ARCH_INTREGS;
56const int NumFloatArchRegs = 16;
57const int NumFloatSpecialRegs = 5;
58
59const int NumIntRegs = NUM_INTREGS;
60const int NumFloatRegs = NumFloatArchRegs + NumFloatSpecialRegs;
61
62const int NumMiscRegs = NUM_MISCREGS;
63
64

--- 55 unchanged lines hidden ---