mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-07 21:19:47 -04:00
12 lines
315 B
C
12 lines
315 B
C
/* $NetBSD: param.h,v 1.4 2005/12/11 12:17:29 christos Exp $ */
|
|
|
|
/* Windows CE architecture */
|
|
|
|
#define DEV_BSIZE 512
|
|
#define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */
|
|
#define BLKDEV_IOSIZE 2048
|
|
#define MAXPHYS (64 * 1024) /* max raw I/O transfer size */
|
|
|
|
/* bytes to disk blocks */
|
|
#define btodb(x) ((x) >> DEV_BSHIFT)
|