From news-rocq.inria.fr!jussieu.fr!univ-lille1.fr!ciril.fr!news.imag.fr!univ-lyon1.fr!in2p3.fr!oleane!tank.news.pipex.net!pipex!usenet.eel.ufl.edu!spool.mu.edu!howland.reston.ans.net!newsfeed.internetmci.com!news.kei.com!bloom-beacon.mit.edu!senator-bed Tue Dec 19 10:58:16 1995 Article: 3342 of rec.games.corewar Path: news-rocq.inria.fr!jussieu.fr!univ-lille1.fr!ciril.fr!news.imag.fr!univ-lyon1.fr!in2p3.fr!oleane!tank.news.pipex.net!pipex!usenet.eel.ufl.edu!spool.mu.edu!howland.reston.ans.net!newsfeed.internetmci.com!news.kei.com!bloom-beacon.mit.edu!senator-bedfellow.mit.edu!m16-034-4.MIT.EDU!gmeadon From: gmeadon@mit.edu (George M Eadon) Newsgroups: rec.games.corewar Subject: Nothing Special -- Round 9 Entry Date: 18 Dec 1995 22:21:04 GMT Organization: Massachvsetts Institvte of Technology Lines: 67 Message-ID: <4b4pgg$n9@senator-bedfellow.MIT.EDU> NNTP-Posting-Host: m16-034-4.mit.edu X-Newsreader: TIN [version 1.2 PL2] As the name would suggest, there's nothing special about this warrior. With finals on the horizon, I didn't have much time to work on a Round 9 entry so I just put a mod-4 stone in front of a 5 point, 3 layer imp spiral... I did a little with the constants to try to keep the stone from killing any of the spiral's processes, but I never suceeded in getting the spiral to survive with all 15 processes intact. The spiral is taken directly from Jay Han's makeimp. As far as I can tell, the only real difference between my entry and Beepe's is the step size for the bomber and the configuration of the spiral (I use a 5 point 15 process spiral while he uses a 7 point 16 process spiral). ;redcode ;NSFCWT Round #9 ;contact gmeadon@mit.edu ;name Nothing Special ;author G. Eadon ;strategy Mod-4 DAT Bomber + 15 process -- 5 point spiral start spl launch SPL 0 loop ADD #3812, ptr ptr MOV bomb, 2 JMP loop bomb dat 0, 12 ; 15-process 5-point spiral (coresize 8192, '88 standard) step equ 3277 launch spl lbl3 spl lbl5 spl lbl9 spl lbl17 jmp imp+0*step+0 lbl17 jmp imp+1*step+0 lbl9 spl lbl19 jmp imp+2*step+0 lbl19 jmp imp+3*step+0 lbl5 spl lbl11 spl lbl21 jmp imp+4*step+0 lbl21 jmp imp+0*step+1 lbl11 spl lbl23 jmp imp+1*step+1 lbl23 jmp imp+2*step+1 lbl3 spl lbl7 spl lbl13 spl lbl25 jmp imp+3*step+1 lbl25 jmp imp+4*step+1 lbl13 spl lbl27 jmp imp+0*step+2 lbl27 jmp imp+1*step+2 lbl7 spl lbl15 spl lbl29 jmp imp+2*step+2 lbl29 jmp imp+3*step+2 lbl15 jmp 1 ; Idle 1 cycle jmp imp+4*step+2 imp mov 0, step end start From news-rocq.inria.fr!jussieu.fr!math.ohio-state.edu!howland.reston.ans.net!newsfeed.internetmci.com!in1.uu.net!spcuna!news.stormking.com!stst@idnsun.gpct.Vanderbilt.Edu Tue Dec 19 10:58:28 1995 Article: 3349 of rec.games.corewar Path: news-rocq.inria.fr!jussieu.fr!math.ohio-state.edu!howland.reston.ans.net!newsfeed.internetmci.com!in1.uu.net!spcuna!news.stormking.com!stst@idnsun.gpct.Vanderbilt.Edu From: stst@idnsun.gpct.Vanderbilt.Edu (Stefan Strack) Newsgroups: rec.games.corewar Subject: Re: Nothing Special -- Round 9 Entry Date: 19 Dec 1995 01:12:04 -0500 Organization: Storm King Ind. Inc. Lines: 14 Sender: server@news.stormking.com Distribution: world Message-ID: <9512190559.AA13914@idnsun.gpct.Vanderbilt.Edu.noname> Reply-To: stst@idnsun.gpct.Vanderbilt.Edu NNTP-Posting-Host: valhalla.stormking.com Originator: corewar-l@stormking.com G. Eadon wrote: >;name Nothing Special >;author G. Eadon >[..] >bomb dat 0, 12 Before you run this with "pmars -8 ..", I just wanted to point out that I had to change this line to bomb dat #0, #12 to conform with ICWS'88. -Stefan