head	1.1;
access;
symbols;
locks
	bsittler:1.1; strict;
comment	@# @;


1.1
date	2002.07.28.23.08.00;	author bsittler;	state Exp;
branches;
next	;


desc
@shell-script wrapper to make the v1 assembler act like the v0 assembler
@


1.1
log
@Initial revision
@
text
@#!/bin/bash --

# $Id$
#
# This bash program runs the assembler from the SMOKE-16 v1 toolset
# with options to make it assemble the sources from old distributions
# without errors, and produce object files compatible with the tools
# in the SMOKE-16 "v0" toolset.
#

exec -a "$0" "$(dirname "$0")"/../bin/"$(basename "$0")" -7 -J -A v0 "$@@"
@
