in PR pkg/19899 and modified by me. DASM is a highly evolved cross-assembler for 6502, 6803 and 68HC11 processors. It is very popular for hacking/cross-developing on old 6502-based video game systems from Atari, Nintendo, etc. DASM processes output from the Distella Atari ROM disassembler without modification.
10 lines
223 B
Makefile
10 lines
223 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/11/20 16:24:43 minskim Exp $
|
|
|
|
PROG= dasm
|
|
SRCS= exp.c globals.c main.c mne6303.c mne6502.c mne6811.c mne68705.c \
|
|
ops.c symbols.c
|
|
|
|
NOMAN= yes
|
|
BINDIR= ${PREFIX}/bin
|
|
|
|
.include <bsd.prog.mk>
|