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.
This commit is contained in:
Ian Lance Taylor 1996-06-18 19:10:42 +00:00
parent e10a4fc492
commit 03496c49d4
3 changed files with 47 additions and 0 deletions

View File

@ -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

View File

@ -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

31
opcodes/makefile.vms Normal file
View File

@ -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) $< $@