AminetAminet
Search:
84520 packages online
About
Recent
Browse
Search
Upload
Setup
Services

game/think/MADgic41.lzh

Mirror:Random
Showing:m68k-amigaosppc-amigaosppc-morphosi386-arosi386-amithlonppc-warpupppc-powerupgeneric
No screenshot available
Short:COREWAR GAME ASSEMBLY VIRUS
Date:1992-08-15
Download:http://aminet.net/game/think/MADgic41.lzh - View contents
Readme:http://aminet.net/game/think/MADgic41.readme
Downloads:602

MADgic41.lzh is Version 4.1 of The MADgic Core: Core War for the Amiga
Copyright 1992 Mark A. Durham.  It is freely distributable in its complete
archived form.
 
The archive should be decompressed to an empty floppy disk to get the
full effect of the system.  It requires about 77% of an 880K disk.
 
Here are just some of the things new for version 4.1 of The MADgic Core:
 
ASR
---
 
   Multiple file assembly -
      By far the biggest new feature for 4.1 is the ability to assemble
      multiple files with a single invocation of ASR.  From the WorkBench,
      you SHIFT-Select multiple source files while starting up ASR.  ASR
      will issue a report on each individual file as it is assembled as
      well as list the number of successful and failed assemblies at the
      end of execution.  This will work even across volumes (different
      disks).
 
      From the Shell, just type the command ASR followed by a simple
      AmigaDOS pattern (one containing only #'s and/or ?'s).  ASR can
      handle multiple directories with a single pattern.  For instance,
      to assemble all of the ICWS tournament programs in each of the four
      directories as they appear on The MADgic Core disk in df0:,
      issue the command
 
         "ASR df0:#?/#?.s"
 
      ASR can handle even more levels (i.e. #?/#?/#?/#?.s) if necessary.
      Or you can just list multiple files (i.e. "ASR file1 file2 etc.").
 
      This feature has allowed the deletion of all of the object files from
      the tournament program directories to make room for other improvents.
 
   ToolTypes -
      ASR recognizes the following Tooltypes field of the ASR icon set
      using the WorkBench menu Info command.  They are:
 
         WINDOW=<left>/<top>/<width>/<height> where <left> is the left edge
            of the assembly window, <top> is the top edge, <width> is the
            <width>, and <height> is the height (in pixels).  Some
            combinations may not be available and could possibly result in
            a crash.
         NOCOMMAS=<TrueOrFalse> where <TrueOrFalse> is either TRUE or FALSE.
            NOCOMMAS=TRUE tells the assembler not to expect commas between
            operands.  If this option is set, operands are separated by
            whitespace and therefore no whitespace can occur with operand
            expressions.  Ordinarily ASR can determine whether operands
            are separated by whitespace or not, but some instructions can
            be ambiguous.  Example: DAT 2 -1  (Is it "DAT (2-1)" or is it
            "DAT 2, -1"?).
         NOICONS=<TrueOrFalse> where NOICONS=TRUE keeps ASR from saving
            .info files along with the object files.
         DISPLAY=<TrueOrFalse> where DISPLAY=TRUE will list the assembly
            to the window.
         PRINT=<TrueOrFalse> where PRINT=TRUE will list the assembly to the
            PRT: device.
         VERSION=<version> where <version> is 86 for ICWS'86 and 88 is for
            ICWS'88.  The fields for SPL were swapped between ICWS'86 and
            ICWS'88.  This option tells the assembler how to assemble
            instructions like "SPL 0".  The default is ICWS'88.  Only MARS
            truly supports the ICWS'86 style assembly.  SmallMARS and
            FastMARS really expect an ICWS'88 assembly, but otherwise
            behave as ICWS'86 rules dictate.  There is no way for you to
            know whether an object file was assembled as ICWS'86 or ICWS'88,
            so I recommend you use this option only if you absolutely have
            to do so.
 
   Command line options -
      ASR supports many command line options from the Shell.  They are:
 
         -c    Same as NOCOMMAS=TRUE above.
         -i    Same as NOICONS=TRUE above.
         -l    Same as DISPLAY=TRUE above.
         -v86  Same as VERSION=86 above.
         -v88  Same as VERSION=88 above (the default).
 
      There are AmigaDOS style options which fulfill the same functions as
      the above.  Here is the template for the ASR command:
 
         FILES/A/M,D=DISPLAY/S,P=PRINT,NC=NOCOMMAS/S,NI=NOICONS/S:
 
   Redcode support -
      ASR now supports all but the strangest abuses of Core War.  Colons
      and underscores in labels are the most frequent characters now
      supported in 4.1 but not in previous versions.
 
 
MARS
----
 
   Preloading filenames from WorkBench -
      If you SHIFT-Select one or two object file icons while starting up
      MARS from the WorkBench, the filenames are preloaded into the file
      requester brought up by the Load command.  You still need to issue
      the Load command to actually load the programs.  What is new for 4.1
      is that you can preload the file requester across volumes (disks).
 
   ToolTypes -
      You can set many defaults in the ToolTypes field of the MARS icon by
      using the WorkBench menu Info command.  Here are the recognized tools:
 
         SIZE=<size> where <size> is any of the Core sizes available from
            the Core menu (2000, 4000, 8000, 8192, 16000, 32000, 64000,
            and 128000).
         CYCLES=<maximum cycles before declaring a draw>
         TASKS=<maximum number of tasks per warrior>
         COLOR=<rgb>|<rgb>|<rgb>|<rgb>|<rgb>|<rgb>|<rgb>|<rgb> where each
            r, g, or b is a hexidecimal number (0-F).  The default colors
            are, in this order, grey, light blue, dark blue, white, black,
            light red, dark red, and green.
         VERSION=<version> where <version> is either 86 for the ICWS'86
            standard or 88 for the ICWS'88 standard.
 
      New for 4.1 are:
 
         CPU=<cpu type> where cpu type is MEMORY for Memory-Based and
            REGISTER for Register-Based.
         MEMORY=<left>/<top>/<width>/<height>/<display> where <left> is
            the left edge of the Memory Window, <top> the top edge,
            <width> the width, and <height> is the height.  Some
            combinations may not be available.  <display> is optional and
            can be either ON or OFF.
         TRACE=<left>/<top>/<width>/<height>/<display> where all the fields
            behave the same as above.
         GAUGE=<left>/<display>
         TIMER=<left>/<display>
         SOUND=<switch> where <switch> is either ON or OFF.
 
      MARS does not recognize any flags or commands from the Shell.
 
   Improved Style Guide Compliance -
      The Load requester no longer automatically selects the first string
      gadget.  Select the first gadget with the mouse or type the <TAB> or
      <RETURN> keys to automatically select the first gadget.  Otherwise,
      the <A>, <B>, or <R> keys will activate the A..., B..., or Random
      gadgets, respectively.
 
      Clicking outside active requesters will result in the Wait pointer
      (the 2.0 Stopwatch) being displayed.  The Wait pointer now appears
      during every activity which may impede interacting with the program.
 
   More keyboard shortcuts -
      Almost every menu command now has a keyboard equivalent with at least
      a remote relationship to the command.  (There are exceptions).
 
   New sound features -
      You can now control each warrior's sound volume individually from the
      Sound requester.
 
   New "processor" support -
      MARS now supports a Memory-Based interpretation of the standards as
      well as the original (default, and correct - so say I) Register-Based
      interpretation.
 
   New 2.0-look system gadgets -
      The Trace Window and Memory Window both now have system gadgets with
      2.0-look system gadgets, even under 1.x versions of the operating
      system.  This is a bit of an experimental hack, and I'm not sure
      whether I will keep them - or even if they will work under all
      circumstances.
 
 
        Mark A. Durham (MAD)
 Email: durham at ricevm1.rice.edu
 GEnie: M.DURHAM2
USmail: P.O. Box 301173
        Houston, TX 77230-1173
        USA
Architecture: m68k-amigaos




Contents of game/think/MADgic41.lzh
 PERMSSN    UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
[generic]                   97     107  90.7% -lh1- c768 May  3  1992 .info
[generic]                  350     894  39.1% -lh1- c8f0 May  3  1992 1987.info
[generic]                  352     894  39.4% -lh1- be81 May  3  1992 1988.info
[generic]                  126     237  53.2% -lh1- b96c Oct  7  1989 1988.tm
[generic]                  353     894  39.5% -lh1- 577c May  3  1992 1989.info
[generic]                  352     894  39.4% -lh1- 314e May  3  1992 1990.info
[generic]                13605   23248  58.5% -lh1- 53a5 May  3  1992 ASR
[generic]                  402     631  63.7% -lh1- ef06 Mar  9  1992 ASR.info
[generic]                  581    1878  30.9% -lh1- 5798 May  3  1992 Disk.info
[generic]                   38      54  70.4% -lh1- ca60 Jan 30  1987 Dwarf.o
[generic]                  211     387  54.5% -lh1- ae98 May  3  1992 Dwarf.o.info
[generic]                  111     193  57.5% -lh1- dc38 Jun 26  1988 Dwarf.s
[generic]                  248     446  55.6% -lh1- bee5 May  3  1992 Dwarf.s.info
[generic]                 8321   15296  54.4% -lh1- 65db Jun 27  1988 FastMARS
[generic]                 7933   13320  59.6% -lh1- 3b75 Dec 11  1991 FastMARS88
[generic]                   13      20  65.0% -lh1- 3f36 Jul 11  1991 IMP.o
[generic]                  210     387  54.3% -lh1- 11e8 May  3  1992 IMP.o.info
[generic]                   91     134  67.9% -lh1- 1cba Jun 26  1988 IMP.s
[generic]                  246     446  55.2% -lh1- 4e1a May  3  1992 IMP.s.info
[generic]                 9806   32827  29.9% -lh1- 1c6c Mar 12  1992 Manual
[generic]                  289     961  30.1% -lh1- 54ff May  3  1992 Manual.info
[generic]                43811   97804  44.8% -lh1- 5eca May  3  1992 MARS
[generic]                  384     635  60.5% -lh1- a3e6 Mar  9  1992 MARS.info
[generic]                 3120    7406  42.1% -lh1- 16e9 May  3  1992 New For 4.1
[generic]                  289     961  30.1% -lh1- edc2 May  3  1992 New For 4.1.info
[generic]                10160   16756  60.6% -lh1- 2391 May  3  1992 Points
[generic]                 1519    3273  46.4% -lh1- 7c40 May  3  1992 points.c
[generic]                 1023    1789  57.2% -lh1- 9254 May  3  1992 points.doc
[generic]                 1237    2343  52.8% -lh1- 5ece May  2  1992 ReadMe
[generic]                  298     961  31.0% -lh1- 49c9 May  3  1992 ReadMe.info
[generic]                 8587   15440  55.6% -lh1- 08ea Jul  4  1988 SmallMARS
[generic]                 8042   13644  58.9% -lh1- f8ea Dec 11  1991 SmallMARS88
[generic]                 8246   13868  59.5% -lh1- 1507 Dec 11  1991 TMARS
[generic]                  299     533  56.1% -lh1- c729 Mar 10  1992 1987/.info
[generic]                  223     837  26.6% -lh1- dded Jul  9  1988 1987/cancer.s
[generic]                  246     446  55.2% -lh1- 057c Oct  4  1989 1987/CANCER.S.info
[generic]                  125     300  41.7% -lh1- 6125 Jul  9  1988 1987/chang1.s
[generic]                  247     446  55.4% -lh1- 92fa Oct  4  1989 1987/CHANG1.S.info
[generic]                  114     252  45.2% -lh1- 480b Jul  9  1988 1987/dr. frog.s
[generic]                  248     446  55.6% -lh1- 48f2 Oct  4  1989 1987/DR. FROG.S.info
[generic]                  233     688  33.9% -lh1- 4422 Jul  9  1988 1987/dracula.s
[generic]                  249     446  55.8% -lh1- 19b8 Oct  4  1989 1987/DRACULA.S.info
[generic]                  129     253  51.0% -lh1- a255 Jul  9  1988 1987/dwomp.s
[generic]                  248     446  55.6% -lh1- 3e72 Oct  4  1989 1987/DWOMP.S.info
[generic]                  157     335  46.9% -lh1- 28cf Jul  9  1988 1987/ferret.s
[generic]                  248     446  55.6% -lh1- 07b7 Oct  4  1989 1987/FERRET.S.info
[generic]                  172     446  38.6% -lh1- 7b82 Jul  9  1988 1987/jumper.s
[generic]                  248     446  55.6% -lh1- 50a2 Oct  4  1989 1987/JUMPER.S.info
[generic]                  300    1474  20.4% -lh1- f683 Jul  9  1988 1987/KWC72C.bak
[generic]                  302    1475  20.5% -lh1- c205 Oct  4  1989 1987/kwc72c.s
[generic]                  249     446  55.8% -lh1- ae12 Oct  4  1989 1987/KWC72C.S.info
[generic]                  239     619  38.6% -lh1- 6c0e Jul  9  1988 1987/lincogs2.s
[generic]                  245     446  54.9% -lh1- 0fbb Oct  4  1989 1987/LINCOGS2.S.info
[generic]                  144     266  54.1% -lh1- 4c48 Jul  9  1988 1987/mice.s
[generic]                  247     446  55.4% -lh1- 764b Oct  4  1989 1987/MICE.S.info
[generic]                   78     120  65.0% -lh1- 87c8 Jul  9  1988 1987/minidpls.s
[generic]                  247     446  55.4% -lh1- ad0a Oct  4  1989 1987/MINIDPLS.S.info
[generic]                  175     390  44.9% -lh1- a5b1 Jul  9  1988 1987/minidspr.s
[generic]                  249     446  55.8% -lh1- 574d Oct  4  1989 1987/MINIDSPR.S.info
[generic]                  221     800  27.6% -lh1- cded Jul  9  1988 1987/mousetrp.s
[generic]                  248     446  55.6% -lh1- a52e Oct  4  1989 1987/MOUSETRP.S.info
[generic]                  229     757  30.3% -lh1- dfce Jul  9  1988 1987/nfluenza.s
[generic]                  249     446  55.8% -lh1- b98b Oct  4  1989 1987/NFLUENZA.S.info
[generic]                  120     300  40.0% -lh1- 7117 Jul  9  1988 1987/ogre.s
[generic]                  248     446  55.6% -lh1- 8454 Oct  4  1989 1987/OGRE.S.info
[generic]                  152     351  43.3% -lh1- f401 Jul  9  1988 1987/phage.s
[generic]                  246     446  55.2% -lh1- ff20 Oct  4  1989 1987/PHAGE.S.info
[generic]                  198     625  31.7% -lh1- 288e Jul  9  1988 1987/piper.s
[generic]                  246     446  55.2% -lh1- e0a5 Oct  4  1989 1987/PIPER.S.info
[generic]                  151     468  32.3% -lh1- 4df6 Jul  9  1988 1987/plague.s
[generic]                  246     446  55.2% -lh1- a66b Oct  4  1989 1987/PLAGUE.S.info
[generic]                  182     445  40.9% -lh1- 41b4 Jul  9  1988 1987/pmjump.s
[generic]                  247     446  55.4% -lh1- 3b48 Oct  4  1989 1987/PMJUMP.S.info
[generic]                  109     224  48.7% -lh1- 28f0 Jul  9  1988 1987/roller.s
[generic]                  248     446  55.6% -lh1- a08d Oct  4  1989 1987/ROLLER.S.info
[generic]                  321     975  32.9% -lh1- 1ef6 Jul  9  1988 1987/schindlr.s
[generic]                  247     446  55.4% -lh1- 957f Oct  4  1989 1987/SCHINDLR.S.info
[generic]                   65     111  58.6% -lh1- 70c2 Jul  9  1988 1987/splat.s
[generic]                  248     446  55.6% -lh1- b6c2 Oct  4  1989 1987/SPLAT.S.info
[generic]                  158     482  32.8% -lh1- 82d4 Jul  9  1988 1987/trapper.s
[generic]                  248     446  55.6% -lh1- 995c Oct  4  1989 1987/TRAPPER.S.info
[generic]                  159     360  44.2% -lh1- 9338 Jul  9  1988 1987/ultima ratio regum.s
[generic]                  247     446  55.4% -lh1- 393c Oct  4  1989 1987/ULTIMA RATIO REGUM.S.info
[generic]                  347    1239  28.0% -lh1- 8f07 Jul  9  1988 1987/vampsprd.s
[generic]                  248     446  55.6% -lh1- d3f7 Oct  4  1989 1987/VAMPSPRD.S.info
[generic]                  243     745  32.6% -lh1- ab44 Jul  9  1988 1987/w2.c
[generic]                  248     446  55.6% -lh1- 07a7 Oct  4  1989 1987/W2.C.info
[generic]                  238    1108  21.5% -lh1- 84f0 Jul  9  1988 1987/zamzow.s
[generic]                  248     446  55.6% -lh1- 4726 Oct  4  1989 1987/ZAMZOW.S.info
[generic]                  192     321  59.8% -lh1- ee3e Oct  4  1989 1988/.info
[generic]                  235     821  28.6% -lh1- e6de Oct  4  1989 1988/asiwar.s
[generic]                  248     446  55.6% -lh1- 865e Oct  4  1989 1988/asiwar.s.info
[generic]                 1040    2967  35.1% -lh1- 38f6 Oct  4  1989 1988/cowboy.s
[generic]                  248     446  55.6% -lh1- 8da9 Oct  4  1989 1988/cowboy.s.info
[generic]                  242     581  41.7% -lh1- 22bf Oct  4  1989 1988/death.s
[generic]                  249     446  55.8% -lh1- 749c Oct  4  1989 1988/death.s.info
[generic]                 1926   20081   9.6% -lh1- b05c Oct  4  1989 1988/dmdmule.s
[generic]                  248     446  55.6% -lh1- eb3f Oct  4  1989 1988/dmdmule.s.info
[generic]                  423    1910  22.1% -lh1- 14c6 Oct  4  1989 1988/drdeath.s
[generic]                  248     446  55.6% -lh1- f419 Oct  4  1989 1988/drdeath.s.info
[generic]                  244     732  33.3% -lh1- ad03 Oct  4  1989 1988/dude.s
[generic]                  247     446  55.4% -lh1- caa7 Oct  4  1989 1988/dude.s.info
[generic]                  402    2255  17.8% -lh1- ab2d Oct  4  1989 1988/fydgitr.s
[generic]                  248     446  55.6% -lh1- 1981 Oct  4  1989 1988/fydgitr.s.info
[generic]                  249     446  55.8% -lh1- 12e0 Oct  4  1989 1988/hithard.s.info
[generic]                  237     647  36.6% -lh1- 43cb Oct  4  1989 1988/hithard2.s
[generic]                  330    1267  26.0% -lh1- d153 Oct  4  1989 1988/immobili.s
[generic]                  249     446  55.8% -lh1- c982 Oct  4  1989 1988/immobili.s.info
[generic]                  832   20128   4.1% -lh1- f7f6 Oct  4  1989 1988/lux2t.s
[generic]                  246     446  55.2% -lh1- 0758 Oct  4  1989 1988/lux2t.s.info
[generic]                  531    1760  30.2% -lh1- 4e13 Oct  4  1989 1988/muledna.s
[generic]                  248     446  55.6% -lh1- 8abb Oct  4  1989 1988/muledna.s.info
[generic]                  226     819  27.6% -lh1- 573f Oct  4  1989 1988/sieve.s
[generic]                  246     446  55.2% -lh1- d842 Oct  4  1989 1988/sieve.s.info
[generic]                  312    1112  28.1% -lh1- 73ef Oct  4  1989 1988/slaver.s
[generic]                  248     446  55.6% -lh1- 2063 Oct  4  1989 1988/slaver.s.info
[generic]                  283     986  28.7% -lh1- 55eb Oct  4  1989 1988/sud.s
[generic]                  248     446  55.6% -lh1- 5fb6 Oct  4  1989 1988/sud.s.info
[generic]                  208     659  31.6% -lh1- 4506 Oct  4  1989 1988/wally.s
[generic]                  247     446  55.4% -lh1- 42be Oct  4  1989 1988/wally.s.info
[generic]                  358    1741  20.6% -lh1- 79f1 Oct  4  1989 1988/waspnest.s
[generic]                  245     446  54.9% -lh1- ebe9 Oct  4  1989 1988/waspnest.s.info
[generic]                  525    2875  18.3% -lh1- e920 Oct  4  1989 1988/wipe5.s
[generic]                  249     446  55.8% -lh1- 22da Oct  4  1989 1988/wipe5.s.info
[generic]                  219     384  57.0% -lh1- 2033 Mar 10  1992 1989/.info
[generic]                  119     268  44.4% -lh1- bb37 Mar 10  1992 1989/BitStorm.s
[generic]                  249     446  55.8% -lh1- 01ad Mar 10  1992 1989/BitStorm.s.info
[generic]                  287     757  37.9% -lh1- 5bb0 Mar 10  1992 1989/Bruin.s
[generic]                  247     446  55.4% -lh1- 0353 Mar 10  1992 1989/Bruin.s.info
[generic]                  370    1663  22.2% -lh1- 9d6f Mar 10  1992 1989/Hamlin.s
[generic]                  248     446  55.6% -lh1- f880 Mar 10  1992 1989/Hamlin.s.info
[generic]                  982   18563   5.3% -lh1- 7488 Mar 10  1992 1989/Hypray.s
[generic]                  249     446  55.8% -lh1- 4f64 Mar 10  1992 1989/Hypray.s.info
[generic]                 1454   18957   7.7% -lh1- b9a2 Mar 10  1992 1989/Kili.s
[generic]                  249     446  55.8% -lh1- 1f3d Mar 10  1992 1989/Kili.s.info
[generic]                  152     337  45.1% -lh1- 45ce Mar 10  1992 1989/Killer2.s
[generic]                  248     446  55.6% -lh1- e1eb Mar 10  1992 1989/Killer2.s.info
[generic]                  215     496  43.3% -lh1- 2ba7 Mar 10  1992 1989/MADFerret.s
[generic]                  250     446  56.1% -lh1- cb38 Mar 10  1992 1989/MADFerret.s.info
[generic]                  358    1114  32.1% -lh1- 8168 Mar 10  1992 1989/PowerBomb.s
[generic]                  248     446  55.6% -lh1- dd18 Mar 10  1992 1989/PowerBomb.s.info
[generic]                  684    1517  45.1% -lh1- c621 Mar 10  1992 1989/Quarter.s
[generic]                  249     446  55.8% -lh1- 801a Mar 10  1992 1989/Quarter.s.info
[generic]                  701    1662  42.2% -lh1- 893c Mar 10  1992 1989/Quarter2.s
[generic]                  249     446  55.8% -lh1- 763e Mar 10  1992 1989/Quarter2.s.info
[generic]                  342    1299  26.3% -lh1- c6a9 Mar 10  1992 1989/QuickSand2.s
[generic]                  248     446  55.6% -lh1- 3d75 Mar 10  1992 1989/QuickSand2.s.info
[generic]                  134     259  51.7% -lh1- ae3d Mar 10  1992 1989/RandomFire.s
[generic]                  246     446  55.2% -lh1- 13f7 Mar 10  1992 1989/RandomFire.s.info
[generic]                  584    1730  33.8% -lh1- d44d Mar 10  1992 1989/SAD2.s
[generic]                  249     446  55.8% -lh1- 6c01 Mar 10  1992 1989/SAD2.s.info
[generic]                  153     306  50.0% -lh1- ea05 Mar 10  1992 1989/Scrambler.s
[generic]                  248     446  55.6% -lh1- 1e3c Mar 10  1992 1989/Scrambler.s.info
[generic]                  107     209  51.2% -lh1- 3567 Mar 10  1992 1989/Sting2.s
[generic]                  248     446  55.6% -lh1- e89b Mar 10  1992 1989/Sting2.s.info
[generic]                 1370    2868  47.8% -lh1- 5443 Mar 10  1992 1989/Tank.s
[generic]                  246     446  55.2% -lh1- 60f7 Mar 10  1992 1989/Tank.s.info
[generic]                 3295   19951  16.5% -lh1- dfb9 Mar 10  1992 1989/UmAccp.s
[generic]                  246     446  55.2% -lh1- c823 Mar 10  1992 1989/UmAccp.s.info
[generic]                  428     937  45.7% -lh1- e466 Mar 10  1992 1989/Vamp.s
[generic]                  247     446  55.4% -lh1- a185 Mar 10  1992 1989/Vamp.s.info
[generic]                  297     758  39.2% -lh1- 670b Mar 10  1992 1989/Wang1.s
[generic]                  248     446  55.6% -lh1- 3369 Mar 10  1992 1989/Wang1.s.info
[generic]                  260     444  58.6% -lh1- 7c23 Mar 10  1992 1990/.info
[generic]                  606    1960  30.9% -lh1- f582 Mar 10  1992 1990/Basilisk.s
[generic]                  247     446  55.4% -lh1- c2a0 Mar 10  1992 1990/Basilisk.s.info
[generic]                  255     650  39.2% -lh1- 449d Mar 10  1992 1990/Beamer.s
[generic]                  248     446  55.6% -lh1- 65f7 Mar 10  1992 1990/Beamer.s.info
[generic]                  256     602  42.5% -lh1- 6a73 Mar 10  1992 1990/CatCan.s
[generic]                  249     446  55.8% -lh1- adb7 Mar 10  1992 1990/CatCan.s.info
[generic]                  326     753  43.3% -lh1- 3825 Mar 10  1992 1990/DAC.s
[generic]                  246     446  55.2% -lh1- 033f Mar 10  1992 1990/DAC.s.info
[generic]                  245     384  63.8% -lh1- 5692 Mar 10  1992 1990/Dervish.s
[generic]                  249     446  55.8% -lh1- b3c2 Mar 10  1992 1990/Dervish.s.info
[generic]                  225     418  53.8% -lh1- ece6 Mar 10  1992 1990/Divers.s
[generic]                  249     446  55.8% -lh1- df7f Mar 10  1992 1990/Divers.s.info
[generic]                  403    1006  40.1% -lh1- 6dda Mar 10  1992 1990/DoubleStormII.s
[generic]                  249     446  55.8% -lh1- 1671 Mar 10  1992 1990/DoubleStormII.s.info
[generic]                  621    2218  28.0% -lh1- 1899 Mar 10  1992 1990/Gato.s
[generic]                  249     446  55.8% -lh1- 9917 Mar 10  1992 1990/Gato.s.info
[generic]                  506    2371  21.3% -lh1- b9c1 Mar 10  1992 1990/Infester.s
[generic]                  249     446  55.8% -lh1- c88e Mar 10  1992 1990/Infester.s.info
[generic]                  200     348  57.5% -lh1- ec1a Mar 10  1992 1990/Jujitsu.s
[generic]                  250     446  56.1% -lh1- 2231 Mar 10  1992 1990/Jujitsu.s.info
[generic]                  193     429  45.0% -lh1- b4af Mar 10  1992 1990/LeapToad.s
[generic]                  248     446  55.6% -lh1- 6d40 Mar 10  1992 1990/LeapToad.s.info
[generic]                  343     797  43.0% -lh1- 5578 Mar 10  1992 1990/Lightning.s
[generic]                  250     446  56.1% -lh1- 31c1 Mar 10  1992 1990/Lightning.s.info
[generic]                  517    1950  26.5% -lh1- 51c2 Mar 10  1992 1990/MrBeef.s
[generic]                  247     446  55.4% -lh1- 7917 Mar 10  1992 1990/MrBeef.s.info
[generic]                  447    1172  38.1% -lh1- 0ea6 Mar 10  1992 1990/Net.s
[generic]                  249     446  55.8% -lh1- 4b12 Mar 10  1992 1990/Net.s.info
[generic]                  514    1988  25.9% -lh1- f78f Mar 10  1992 1990/Paper.s
[generic]                  248     446  55.6% -lh1- 5768 Mar 10  1992 1990/Paper.s.info
[generic]                  267     453  58.9% -lh1- af05 Mar 10  1992 1990/Scissors.s
[generic]                  247     446  55.4% -lh1- 4aa4 Mar 10  1992 1990/Scissors.s.info
[generic]                  213     273  78.0% -lh1- 016c Mar 10  1992 1990/Spook.s
[generic]                  249     446  55.8% -lh1- fd25 Mar 10  1992 1990/Spook.s.info
[generic]                  163     216  75.5% -lh1- 0bbc Mar 10  1992 1990/Stone.s
[generic]                  248     446  55.6% -lh1- ee30 Mar 10  1992 1990/Stone.s.info
[generic]                  297     651  45.6% -lh1- 3f5e Mar 10  1992 1990/Trout.s
[generic]                  249     446  55.8% -lh1- 6a55 Mar 10  1992 1990/Trout.s.info
[generic]                  698    1305  53.5% -lh1- aa80 Mar 10  1992 1990/Vlad.s
[generic]                  248     446  55.6% -lh1- 1cab Mar 10  1992 1990/Vlad.s.info
[generic]                  259     378  68.5% -lh1- 01fe Mar 10  1992 1990/Warrior42.s
[generic]                  249     446  55.8% -lh1- f6ba Mar 10  1992 1990/Warrior42.s.info
[generic]                  966    1714  56.4% -lh1- 1eec Mar 10  1992 1990/XTC.s
[generic]                  246     446  55.2% -lh1- b3f8 Mar 10  1992 1990/XTC.s.info
[generic]                  517    1903  27.2% -lh1- 51fc Mar 10  1992 1990/ZD.s
[generic]                  246     446  55.2% -lh1- a076 Mar 10  1992 1990/ZD.s.info
[generic]                  515    1904  27.0% -lh1- 2258 Mar 10  1992 1990/ZE.s
[generic]                  250     446  56.1% -lh1- 2de6 Mar 10  1992 1990/ZE.s.info
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       212 files  188208  486792  38.7%            Aug 15  1992

Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>