Changeset 609 for branches/GNU/src/binutils/bfd/cpu-w65.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/cpu-w65.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* BFD library support routines for the WDC 65816 architecture. 2 Copyright 1995, 1999, 2000 Free Software Foundation, Inc.2 Copyright 1995, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. 3 3 Hacked by Steve Chamberlain of Cygnus Support. 4 4 … … 23 23 #include "libbfd.h" 24 24 25 int bfd_default_scan_num_mach(); 25 static bfd_boolean scan_mach 26 PARAMS ((const struct bfd_arch_info *, const char *)); 26 27 27 static b oolean28 static bfd_boolean 28 29 scan_mach (info, string) 29 30 const struct bfd_arch_info *info ATTRIBUTE_UNUSED; 30 31 const char *string; 31 32 { 32 if (strcmp(string,"w65") == 0) return true; 33 if (strcmp(string,"w65816") == 0) return true; 34 return false; 33 if (strcmp(string,"w65") == 0) 34 return TRUE; 35 if (strcmp(string,"w65816") == 0) 36 return TRUE; 37 return FALSE; 35 38 } 36 39 … … 45 48 "w65", /* printable name */ 46 49 1, 47 true, /* the default machine */50 TRUE, /* the default machine */ 48 51 bfd_default_compatible, 49 52 scan_mach, -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.