>Dwarf CloneMaker
> Yet another Ram Wars fighter, this one a weird
> modification of the Dwarf fighter. Basically, it
> creates dozens of dwarves systematically scattered
> through memory, all firing zeroes in front of them
> and generally mucking up things. Try pitching this
> against the Vampire, at standard locations, it
> makes for an interesting battle. Also try pitting
> it against itself, it results in a draw, but the
> two programs are continually overwriting each
> other, creating a pulsating, star-like display
> that is quite interesting to watch.

@ -7
.target2 DAT 25
.imp    MOV 0,1
.dwarf  DAT 0
        ADD #4,-1
        MOV #0,@-2
        JMP -2
.timer  DAT 1
.start  DJZ create,timer
        JMP -1
.create MOV #10,timer
        ADD #999,target2
.gogo   MOV dwarf,@target2
        ADD #1,target2
        MOV dwarf+1,@target2
        ADD #1,target2
        MOV dwarf+2,@target2
        ADD #1,target2
        MOV dwarf+3,@target2
        SUB #2,target2
        SPL start
        JMP @target2
