From our research, the A/UX 1.1 kernel is compiled with the NEW_PMMU defined in the kernel MAKEFILE.
In the /usr/include/sys/mmu.h file:
The PAGESIZE is defined as #define PAGESIZE (1<<PAGESHIFT)
The PAGESHIFT is defined as #define PAGESHIFT PS4K
The PS4K is defined as #define PS4K 12
From the above formula, the PAGESIZE can be calculated as 1 << 12, which equals 4096. It's 4K, not 2K.
The command, called "pagesize", can also be used to display the current system page size.
Support Information Services