* i386.h: Correct opcode values for fsubp, fsubrp, fdivp, and
[deliverable/binutils-gdb.git] / gdb / tic80-tdep.c
1 /* Target-dependent code for the TI TMS320C80 (MVP) architecture,
2 for GDB, the GNU Debugger.
3 Copyright 1997 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #include "defs.h"
22
23 CORE_ADDR
24 tic80_skip_prologue (pc)
25 CORE_ADDR pc;
26 {
27 error ("tic80_skip_prologue not implemented");
28 }
29
30 CORE_ADDR
31 tic80_frame_chain (finfo)
32 struct frame_info *finfo;
33 {
34 error ("tic80_frame_chain not implemented");
35 }
36
37 CORE_ADDR
38 tic80_frame_saved_pc (finfo)
39 struct frame_info *finfo;
40 {
41 error ("tic80_frame_saved_pc not implemented");
42 }
43
44 CORE_ADDR
45 tic80_saved_pc_after_call (finfo)
46 struct frame_info *finfo;
47 {
48 error ("tic80_saved_pc_after_call not implemented");
49 }
50
51 void
52 tic80_pop_frame ()
53 {
54 error ("tic80_pop_frame not implemented");
55 }
56
57 void
58 tic80_store_return_value (valtype, valbuf)
59 struct type *valtype;
60 char *valbuf;
61 {
62 error ("tic80_store_return_value not implemented");
63 }
64
65 /* Put here the code to store, into a struct frame_saved_regs, the
66 addresses of the saved registers of frame described by FRAME_INFO.
67 This includes special registers such as pc and fp saved in special
68 ways in the stack frame. sp is even more special: the address we
69 return for it IS the sp for the next frame. */
70
71 void
72 tic80_frame_find_saved_regs (fi, fsr)
73 struct frame_info *fi;
74 struct frame_saved_regs *fsr;
75 {
76 error ("tic80_frame_find_saved_regs not implemented");
77 }
78
79 /* Given a return value in `regbuf' with a type `valtype',
80 extract and copy its value into `valbuf'. */
81
82 void
83 tic80_extract_return_value (valtype, regbuf, valbuf)
84 struct type *valtype;
85 char regbuf[REGISTER_BYTES];
86 char *valbuf;
87 {
88 error ("tic80_extract_return_value not implemented");
89 }
This page took 0.031445 seconds and 4 git commands to generate.