Deleted Added
sdiff udiff text old ( 6974:4d4903a3e7c5 ) new ( 7580:6f77f379a594 )
full compact
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
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;

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

71// Kernel Direct Mapped
72const Addr K0SegBase = ULL(0xfffffc0000000000);
73const Addr K0SegEnd = ULL(0xfffffdffffffffff);
74
75// Kernel Virtual
76const Addr K1SegBase = ULL(0xfffffe0000000000);
77const Addr K1SegEnd = ULL(0xffffffffffffffff);
78
79////////////////////////////////////////////////////////////////////////
80//
81// Interrupt levels
82//
83enum InterruptLevels
84{
85 INTLEVEL_SOFTWARE_MIN = 4,
86 INTLEVEL_SOFTWARE_MAX = 19,

--- 50 unchanged lines hidden ---