diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-04-01 20:58:49 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-04-01 20:58:49 +0000 |
commit | fff930eee9997dfd5c995f958a89f41761beccfc (patch) | |
tree | efafa187e79de86e109de773a60703de31c2d4b4 /bfd/cpu-m10300.c | |
parent | 447f398221018cf95af281f340928039b0dfca2c (diff) | |
download | gdb-fff930eee9997dfd5c995f958a89f41761beccfc.zip gdb-fff930eee9997dfd5c995f958a89f41761beccfc.tar.gz gdb-fff930eee9997dfd5c995f958a89f41761beccfc.tar.bz2 |
Fix long-standing mis-comments. Words and addresses are 32-bits long.
Diffstat (limited to 'bfd/cpu-m10300.c')
-rw-r--r-- | bfd/cpu-m10300.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/cpu-m10300.c b/bfd/cpu-m10300.c index 461314a..c14428e 100644 --- a/bfd/cpu-m10300.c +++ b/bfd/cpu-m10300.c @@ -1,5 +1,5 @@ /* BFD support for the Matsushita 10300 processor - Copyright 1996, 1997 Free Software Foundation, Inc. + Copyright 1996, 1997, 1999, 2000 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -23,8 +23,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ const bfd_arch_info_type bfd_am33_arch = { - 32, /* 16 bits in a word */ - 32, /* 16 bits in an address */ + 32, /* 32 bits in a word */ + 32, /* 32 bits in an address */ 8, /* 8 bits in a byte */ bfd_arch_mn10300, 330, @@ -39,8 +39,8 @@ const bfd_arch_info_type bfd_am33_arch = const bfd_arch_info_type bfd_mn10300_arch = { - 32, /* 16 bits in a word */ - 32, /* 16 bits in an address */ + 32, /* 32 bits in a word */ + 32, /* 32 bits in an address */ 8, /* 8 bits in a byte */ bfd_arch_mn10300, 300, |