| OLD | NEW |
| 1 /* Print TI TMS320C80 (MVP) instructions | 1 /* Print TI TMS320C80 (MVP) instructions |
| 2 Copyright 1996, 1997, 1998, 2000, 2005, 2007 Free Software Foundation, Inc. | 2 Copyright 1996, 1997, 1998, 2000, 2005, 2007, 2012 |
| 3 Free Software Foundation, Inc. |
| 3 | 4 |
| 4 This file is part of the GNU opcodes library. | 5 This file is part of the GNU opcodes library. |
| 5 | 6 |
| 6 This library is free software; you can redistribute it and/or modify | 7 This library is free software; you can redistribute it and/or modify |
| 7 it under the terms of the GNU General Public License as published by | 8 it under the terms of the GNU General Public License as published by |
| 8 the Free Software Foundation; either version 3, or (at your option) | 9 the Free Software Foundation; either version 3, or (at your option) |
| 9 any later version. | 10 any later version. |
| 10 | 11 |
| 11 It is distributed in the hope that it will be useful, but WITHOUT | 12 It is distributed in the hope that it will be useful, but WITHOUT |
| 12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | 13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | 14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public |
| 14 License for more details. | 15 License for more details. |
| 15 | 16 |
| 16 You should have received a copy of the GNU General Public License | 17 You should have received a copy of the GNU General Public License |
| 17 along with this program; if not, write to the Free Software | 18 along with this program; if not, write to the Free Software |
| 18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | 19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
| 19 MA 02110-1301, USA. */ | 20 MA 02110-1301, USA. */ |
| 20 | 21 |
| 22 #include "sysdep.h" |
| 21 #include <stdio.h> | 23 #include <stdio.h> |
| 22 | |
| 23 #include "sysdep.h" | |
| 24 #include "opcode/tic80.h" | 24 #include "opcode/tic80.h" |
| 25 #include "dis-asm.h" | 25 #include "dis-asm.h" |
| 26 | 26 |
| 27 static int length; | 27 static int length; |
| 28 | 28 |
| 29 | 29 |
| 30 /* Print an integer operand. Try to be somewhat smart about the | 30 /* Print an integer operand. Try to be somewhat smart about the |
| 31 format by assuming that small positive or negative integers are | 31 format by assuming that small positive or negative integers are |
| 32 probably loop increment values, structure offsets, or similar | 32 probably loop increment values, structure offsets, or similar |
| 33 values that are more meaningful printed as signed decimal values. | 33 values that are more meaningful printed as signed decimal values. |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 int status; | 313 int status; |
| 314 | 314 |
| 315 length = 0; | 315 length = 0; |
| 316 info->bytes_per_line = 8; | 316 info->bytes_per_line = 8; |
| 317 status = fill_instruction (info, memaddr, &insn); | 317 status = fill_instruction (info, memaddr, &insn); |
| 318 if (status != -1) | 318 if (status != -1) |
| 319 status = print_instruction (info, memaddr, insn, NULL); | 319 status = print_instruction (info, memaddr, insn, NULL); |
| 320 | 320 |
| 321 return status; | 321 return status; |
| 322 } | 322 } |
| OLD | NEW |