diff options
author | John Gilmore <gnu@cygnus> | 1991-08-23 20:57:17 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-08-23 20:57:17 +0000 |
commit | e10f519d25f6d5ae558583346af788758a0cc177 (patch) | |
tree | 37fa872d9639789752599cfe28b517162d3f44f0 /include/a.out.sun4.h | |
parent | 68b702127954c1776acf90c4f2e11403f2ade9db (diff) | |
download | gdb-e10f519d25f6d5ae558583346af788758a0cc177.zip gdb-e10f519d25f6d5ae558583346af788758a0cc177.tar.gz gdb-e10f519d25f6d5ae558583346af788758a0cc177.tar.bz2 |
Fix the sun3 segment size rounding value.
Diffstat (limited to 'include/a.out.sun4.h')
-rwxr-xr-x | include/a.out.sun4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/a.out.sun4.h b/include/a.out.sun4.h index 6c456d3..8d938b0 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 */ |