Sunday, 29 June 2008

Infinite Loop

More often than not, infinite loops are created by programming errors and are quickly dealt with. In sympathy for this highly persecuted group of programs, a safe haven has been created on retro code. The two infinite loops below are highly optimized examples. In fact, the actual loops are only 1 byte long!

Z80 Infinite Loop

  ld hl, HERE
HERE:jp (hl)
8080 Infinite Loop
  lxi h, HERE
HERE:pchl
Corewar Infinite Loop
  jmp #0, <-5 
In Corewar, the infinite loop finds its niche destroying small mobile programs called imps!

If you know any infinite loops in need of shelter, please post them in the comments below.

15 comments:

Anonymous said...

while(1);

Anonymous said...

label: goto label;

Anonymous said...

for(;;);

Anonymous said...

jmp $

fgb said...

The 8080 & Z80 infinite loops are one instruction long but not one byte long. The 8080 JMP instruction is three bytes long. The Z80 added relative jumps which decreased local jumps to two bytes. I believe some processors (6502 maybe?) had a one-byte HLT instruction which was implemented as a jump to current location.

Anonymous said...

main = main

prael said...

(let loop ()
(loop))

sfghoul said...

@fgb: the Z80 code looks like 4 bytes, 3 bytes setup code and 1 byte for the actual loop.

Bob Appleyard said...

(Y (lambda (loop) (loop)))

harold said...

EB FE <-- x86 machine code for "jmp $"

Anonymous said...

Befunge:

>v
^<

Jubatian said...

label: push word label
retn

Robert Doroftei said...

asm{
start: nop;
jmp start;
}

Anonymous said...

while True: pass

John said...

Brainf***:

+[]

Underload:

(:^):^

Post a Comment