diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-06-18 19:10:42 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-06-18 19:10:42 +0000 |
commit | 03496c49d437508d0cd66f95598ab3081de107e4 (patch) | |
tree | 5408f2a694cbdbd315c4f4a66a677038b3af512a /opcodes | |
parent | e10a4fc492bc1837967af0feadd6ff671bce1035 (diff) | |
download | gdb-03496c49d437508d0cd66f95598ab3081de107e4.zip gdb-03496c49d437508d0cd66f95598ab3081de107e4.tar.gz gdb-03496c49d437508d0cd66f95598ab3081de107e4.tar.bz2 |
Tue Jun 18 15:08:54 1996 Klaus Kaempf <kkaempf@progis.de>
* makefile.vms: New file.
* alpha-dis.c (print_insn_alpha): Print lda ra,lit(rz) as mov.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/.Sanitize | 1 | ||||
-rw-r--r-- | opcodes/ChangeLog | 15 | ||||
-rw-r--r-- | opcodes/makefile.vms | 31 |
3 files changed, 47 insertions, 0 deletions
diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index 39e23fe..f6b1819 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -54,6 +54,7 @@ i960-dis.c m68k-dis.c m68k-opc.c m88k-dis.c +makefile.vms mips-dis.c mips-opc.c mpw-config.in diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 80a391b..1c5bd40 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,18 @@ +Tue Jun 18 15:08:54 1996 Klaus Kaempf <kkaempf@progis.de> + + * makefile.vms: New file. + + * alpha-dis.c (print_insn_alpha): Print lda ra,lit(rz) as mov. + +Mon Jun 10 18:50:38 1996 Ian Lance Taylor <ian@cygnus.com> + + * h8300-dis.c (bfd_h8_disassemble): Always print ABS8MEM with :8, + regardless of plen. + +Tue Jun 4 09:15:53 1996 Doug Evans <dje@canuck.cygnus.com> + + * i386-dis.c (OP_OFF): Call append_prefix. + Thu May 23 15:18:23 1996 Michael Meissner <meissner@tiktok.cygnus.com> * ppc-opc.c (instruction encoding macros): Add explicit casts to diff --git a/opcodes/makefile.vms b/opcodes/makefile.vms new file mode 100644 index 0000000..5a472a7 --- /dev/null +++ b/opcodes/makefile.vms @@ -0,0 +1,31 @@ +# +# Makefile for libopcodes under openVMS/AXP +# +# For use with gnu-make for vms +# +# Created by Klaus Kaempf, kkaempf@progis.de +# +# +CC=gcc + +OBJS=alpha-dis.obj,dis-buf.obj,disassemble.obj + +ifeq ($(CC),gcc) +CFLAGS=/include=([],[-.include],[-.bfd])$(DEFS) +DEFS=/define=(VMS_ASMCODE=1) +else +CFLAGS=/noopt/debug/include=([],[-.include],[-.bfd])$(DEFS) +DEFS=/define=(VMS_ASMCODE=1) +endif + +libopcodes.olb: sysdep.h $(OBJS) + purge + lib/create libopcodes *.obj + +disassemble.obj: disassemble.c + $(CC)$(CFLAGS)/define=("ARCH_alpha") $< + +alpha-dis.obj: alpha-dis.c alpha-opc.h + +sysdep.h: [-.bfd.hosts]alphavms.h + $(CP) $< $@ |