SGB_07.net CORE WARS Steve's Guide for Beginners Iss 7 (v3) Issue 4 dealt with the basics of the debugger. Issue 5 mentioned graphical display and analysed 2 simple warriors. Issue 6 provided an outline of the instruction set and addressing modes. ====== Lets look at ways of copying code around. Traditional assembler: Make a text file COPY.RED: ;redcode-94 ;name Copy ;author sgb ;Block copy code: traditional assy style OFFSET equ 20 ;Variables (data is arbitrary) src dat #1 dest dat #1 count dat #1 ;Initialise variables start mov.ab #last-src, src mov.ab #(last+OFFSET)-dest, dest mov.ab #last-src, count ;Do the copy loop mov.i