/*
 * defs.h
 *	Some definitions which reflect ForthOS's implementation
 */
#ifndef DEFS_H
#define DEFS_H

#define BLKSIZ (4096)			/* Block size */

/* Screen geometry */
#define BLKCOLS (80)
#define BLKROWS (25)
#define SCRSIZ (BLKCOLS*BLKROWS)
#define SCRBLK (BLKSIZ/SCRSIZ)
#define BLKRESID (BLKSIZ - (SCRSIZ*SCRBLK))

#endif /* DEFS_H */
