diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1998-07-31 09:14:49 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1998-07-31 09:14:49 +0000 |
| commit | 1ba83e535ef1228f7b53df5ca38a8241e2921120 (patch) | |
| tree | bff332196fe2629306769a73e3b6bdd5285852fd /sys/alpha | |
| parent | df317c751694d1a15edf0b185de9756ad948c2b4 (diff) | |
Notes
Diffstat (limited to 'sys/alpha')
| -rw-r--r-- | sys/alpha/include/bwx.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/alpha/include/bwx.h b/sys/alpha/include/bwx.h index 266534db9355..5489e3a4e667 100644 --- a/sys/alpha/include/bwx.h +++ b/sys/alpha/include/bwx.h @@ -23,12 +23,20 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: bwx.h,v 1.1 1998/07/05 12:14:15 dfr Exp $ */ #ifndef _MACHINE_BWX_H_ #define _MACHINE_BWX_H_ +/* + * Byte/word accesses must be made with particular values for addr<37,38> + */ +#define BWX_EV56_INT8 (0L << 37) +#define BWX_EV56_INT4 (1L << 37) +#define BWX_EV56_INT2 (2L << 37) +#define BWX_EV56_INT1 (3L << 37) + static __inline u_int8_t ldbu(vm_offset_t va) { |
