diff options
author | Steve Chamberlain <sac@cygnus> | 1992-01-16 23:52:05 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-01-16 23:52:05 +0000 |
commit | 0a8f9d31956322267efda7ab9ee7153cfcfdca2e (patch) | |
tree | 27cc8665b65fc2a54c10efd6b781b388e8c23be0 /gdb/h8300-tdep.c | |
parent | ce7730d674f077f9e4366809f02cd3591dcf4cdf (diff) | |
download | gdb-0a8f9d31956322267efda7ab9ee7153cfcfdca2e.zip gdb-0a8f9d31956322267efda7ab9ee7153cfcfdca2e.tar.gz gdb-0a8f9d31956322267efda7ab9ee7153cfcfdca2e.tar.bz2 |
Stubs to get things going
Diffstat (limited to 'gdb/h8300-tdep.c')
-rw-r--r-- | gdb/h8300-tdep.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gdb/h8300-tdep.c b/gdb/h8300-tdep.c new file mode 100644 index 0000000..21dde42 --- /dev/null +++ b/gdb/h8300-tdep.c @@ -0,0 +1,32 @@ + +h8300_skip_prologue() +{ + + printf("skip prologue\n"); + + abort(); + +} + +h8300_pop_frame() +{ + printf("pop frame\n"); + +} + +print_insn() +{ + printf("print insn\n"); + +} + + + +FRAME_CHAIN() +{ + + printf("Frame chain\n"); + +} + + |