Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x68k/dev I forgot to commit this.



details:   https://anonhg.NetBSD.org/src/rev/02a434dd405d
branches:  trunk
changeset: 473958:02a434dd405d
user:      minoura <minoura%NetBSD.org@localhost>
date:      Wed Jun 23 15:20:36 1999 +0000

description:
I forgot to commit this.

diffstat:

 sys/arch/x68k/dev/sramvar.h |  10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diffs (25 lines):

diff -r e12aa343ab1e -r 02a434dd405d sys/arch/x68k/dev/sramvar.h
--- a/sys/arch/x68k/dev/sramvar.h       Wed Jun 23 13:20:18 1999 +0000
+++ b/sys/arch/x68k/dev/sramvar.h       Wed Jun 23 15:20:36 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sramvar.h,v 1.1.1.1 1996/05/05 12:17:03 oki Exp $      */
+/*     $NetBSD: sramvar.h,v 1.2 1999/06/23 15:20:36 minoura Exp $      */
 
 /*
  * Copyright (c) 1994 Kazuhisa Shimizu.
@@ -35,9 +35,13 @@
 };
 
 enum sram_unit_flag_bits {
-       SRB_OPEN
+       SRB_OPEN,
+       SRB_READ,
+       SRB_WRITE
 };
 
 enum sram_unit_flags {
-       SRF_OPEN = 1<<SRB_OPEN
+       SRF_OPEN = 1<<SRB_OPEN,
+       SRF_READ = 1<<SRB_READ,
+       SRF_WRITE = 1<<SRB_WRITE
 };



Home | Main Index | Thread Index | Old Index