Renamed these files.

This commit is contained in:
scottr 1996-04-25 22:26:52 +00:00
parent 95101e1310
commit aca6a2e6da
2 changed files with 1112 additions and 0 deletions

1085
sys/arch/mac68k/dev/sbc.c Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,27 @@
/* $NetBSD: sbcreg.h,v 1.1 1996/04/25 22:26:56 scottr Exp $ */
/*
* Register map for the Mac II SCSI Interface (sbc)
* This register map is for the SYM/NCR5380 SCSI Bus Interface
* Controller (SBIC), with the wonderful 16 bytes/register layout
* that Macs have.
*/
/*
* Am5380 Register map (with padding)
*/
typedef union {
volatile u_char sci_reg;
volatile u_char pad[16];
} ncr5380_padded_reg_t;
struct sbc_regs {
ncr5380_padded_reg_t sci_pr0;
ncr5380_padded_reg_t sci_pr1;
ncr5380_padded_reg_t sci_pr2;
ncr5380_padded_reg_t sci_pr3;
ncr5380_padded_reg_t sci_pr4;
ncr5380_padded_reg_t sci_pr5;
ncr5380_padded_reg_t sci_pr6;
ncr5380_padded_reg_t sci_pr7;
};