OP here. My first warrior (pretty shit) is a simple, rather fragile scanner. I'm going to be working on a MARS in two months as a project, and I was actually thinking about adding in a real-time aspect. You have your program, they have theirs, but and you each write one instruction per turn that is executed. You still can't see anything more than you could normally (basically you're flying blind, but you can remember what the previous instructions were if you are smart). The whole idea is, after you start out with your basic first program (limiting to 10 lines, maybe?) you have to write it on-the-fly. Pretty cool, amirite?
;redcode-94
;name ThinBomber
;author Anonymous
;assert CORESIZE==8000
;strategy My first warrior, scans and bombs.
org scan
load: dat 0, 50
scan: seq >load, #0
jmp bomb
jmp scan
bomb: mov.i load, >load
add.b #4, load
jmp scan
Name:
Anonymous2011-02-11 15:57
Anyone play /prog/? Fun game!
I'm a level 4 troll and i'm learning SICP.