
I assume the user can download the simul toolkit. For brevity, here is the 
quick start:

1. mm1.c and md1.c are sample programs that can be linked with simul library
to create executable mm1 and md1.

2. in the simul Makefile, add the following:
mm1: $(LIB) mm1.o
	$(CC) $(CFLAGS) mm1.o -L$(LIBDIR) -lsimul -lm -o $@
md1: $(LIB) md1.o
	$(CC) $(CFLAGS) md1.o -L$(LIBDIR) -lsimul -lm -o $@

3. scripts md1_run let you run a series of analysis on a
trace generated by simul, and creates a ps file using gnuplot. But,
you need to change the paths in the scripts for it to work. I will fix
this problem soon.

4. README.mm1 gives an (not meant to be complete) explanation of how to use 
simul to write a simple simulation program.
