/* Add the following entries into the array mmmap_addrs[] in 
   /usr/sysgen/master.d/mem. It will probably be necessary to
   change the physical base addresses in the right column to 
   values appropriate to your machine. The address information
   is usually contained at the top of /usr/sysgen/system. */

   NOTE: add 0x800000 to the base address entries for the A24 
   spaces, since we only need to map the _top_ half of those.

   struct map mmmap_addrs[] = {
	    ...       ...  
*/
/* For IP5/7/9 systems, use these settings ... */
	{ 0x800000, 0xb3800000, }, /* VME A24D16 non-priv, modifier 0x39 */
	{ 0x800000, 0xb2800000, }, /* VME A24D16 supervisor, modifier 0x3d */
	{ 0x10000,  0xb7c00000, }, /* VME A16D16 non-priv, modifier 0x29 */
	{ 0x10000,  0xb7c10000, }, /* VME A16D16 supervisor, modifier 0x2d */

/* For R2300 systems, use these settings ... */
	{ 0x800000, 0xbc800000, }, /* VME A24D16 supervisor, modifier 0x3d */
	{ 0x10000,  0xbd100000, }, /* VME A16D16 non-priv, modifier 0x29 */
	{ 0x10000,  0xbd000000, }, /* VME A16D16 supervisor, modifier 0x2d */

/* For IP4/6 systems, use these settings ... */
	{ 0x800000, 0xbe800000, }, /* VME A24D16 non-priv, modifier 0x39 */
	{ 0x800000, 0xbc800000, }, /* VME A24D16 supervisor, modifier 0x3d */
	{ 0x10000,  0xbd100000, }, /* VME A16D16 non-priv, modifier 0x29 */
	{ 0x10000,  0xbd000000, }, /* VME A16D16 supervisor, modifier 0x2d */

#endif
