From e10f519d25f6d5ae558583346af788758a0cc177 Mon Sep 17 00:00:00 2001 From: John Gilmore Date: Fri, 23 Aug 1991 20:57:17 +0000 Subject: [PATCH] Fix the sun3 segment size rounding value. --- include/a.out.sun4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/a.out.sun4.h b/include/a.out.sun4.h index 6c456d345e8..8d938b031d3 100755 --- a/include/a.out.sun4.h +++ b/include/a.out.sun4.h @@ -4,7 +4,7 @@ /* Note that some SPARCs have 4K pages, some 8K, some others. */ #define SEG_SIZE_SPARC PAGE_SIZE -#define SEG_SIZE_SUN3 0x80000 /* Resolution of r/w protection hw */ +#define SEG_SIZE_SUN3 0x20000 /* Resolution of r/w protection hw */ #define TEXT_START_ADDR PAGE_SIZE /* Location 0 is not accessible */ -- 2.30.2