/* $NetBSD: pmap.h,v 1.39 2025/08/18 20:59:55 andvar Exp $ */ #ifndef _MAC68K_PMAP_H_ #define _MAC68K_PMAP_H_ #include #include /* * Transparent translation register used in locore.s:get_pte(). * User Data set up for R/W access of the entire address space. * * (XXX TT30_RW isn't actually needed because of TT30_RWM, but * this the value historically used.) */ #define MAC68K_TT_GET_PTE (0x00000000 | \ __SHIFTIN(0xff,TT30_LAM) | \ TT30_E | TT30_CI | TT30_RW | TT30_RWM |\ TT30_USERD) #endif /* _MAC68K_PMAP_H_ */