/*********************************************************************** * file: h/sys/map.h * part#: * internal sequence#: * * ************************************************************** * * " c Copyright Hewlett-Packard Company, 1984.* All * * * rights are reserved. Copying or other reproduction * * * of this program except for archival purposes is * * * prohibited without the prior written consent of * * * Hewlett-Packard Company." * * ************************************************************** * * Pisces Q-DOS project * Andy Rood Kernel project lead * ----------------------------------------------------- * initial 11/82 alr * add rammap[] extern declaration 2/16/83 alr * add drammap[] extern declaration 5/17/83 alr */ struct map { short m_size; unsigned short m_addr; }; extern struct map swapmap[]; extern struct map rammap[]; extern struct map drammap[];