*************************************
* Tomas Lusk, Michal Simek (C) 2005 *
*************************************

Usage :

  make clean  (only after installing new release)

  "edit student.s as you need"
  make
  ./main
  
Make :

  make - without parameter creates your test executable from student.s
  make exec - same as make with executing ./main at the end
  make clean - removes all make generated files

  
NOTE: Modify only student.s
      In other words, ignore all except student.s and help
      
File description :

  ChangeLog - description of changes in releases
  Makefile - project makefile, used by make command
  README - this file
  help - list of macros accessible from macro.s
         manually created from file help_auto
  help_auto - full macro list - created automatically
  help_gen - generator for help_auto
  macros.s - file with macro definitions
  macro_gen[.c] - generator of macrogen.s
  macrogen.s - auto-generated macros - don't edit
               don't include directly, included in macro.s
  main - your executable
  printasm.s - wrapper between asm to C calls
  printers.h - objects for formating outputs
  printlib.cpp - printing engine and printing modes definitions
  printlib.h - some definitions
  student.s - file with your asm code
  student_t.s - template for student.s
  *.o - object files - ignore them
