: assemble the eis simulator proper
as - eis.s ; mv a.out eis.o
echo 11
: A batch of maindecs is assembled, the a.out module is reformatted
: into absolute binary loader format, and the result is transmitted
: to the gt40.
: If the maindec runs well, the Gt40 returns as normal terminal, if
: not the gt40 halts.
: Note that absld uses a.out and b.out as default input/output file and
: display uses b.out as its default input file.
echo ash test
as - ash.s ; mv a.out ash.o ; ld ash.o eis.o ; absld ; display

echo ashc test
as - ashc.s ; mv a.out ashc.o ; ld ashc.o eis.o ; absld ; display

echo div test
as - div.s ; mv a.out div.o ; ld div.o eis.o ; absld ; display

echo mul test
as - mul.s ; mv a.out mul.o ; ld mul.o eis.o ; absld ; display

echo mul1 test
as - mul1.s ; mv a.out mul1.o ; ld mul1.o eis.o ; absld ; display

echo xor test
as - xor.s ; mv a.out xor.o ; ld  xor.o eis.o ; absld ; display
