#!/bin/sh
#
# p11 - pdp11 emulator; Copyright (C) 1994 Hartmut Brandt, Joerg Micheel 
# see the file LICENSE for further information
#

x() {
	echo $*
	$*
}

for I in *.s11 ; do
  O=`basename ${I} .s11`.11
  x ../../as/as11 -o ${O} ${I}
done
