#!/bin/sh -
# simple shell script to assemble atkey.asm with asl for 27C64 EPROM
file=`echo $1 | sed -"es/\..*$//g"`
asl $file.asm $2 $3 $4 $5 $6 $7 $8
if [ "$?" != "0" ]
then
    echo "Error in asl";
    exit;
fi
p2bin $file.p $file.obj -r \$0000-\$1fff
