Speed example
@loop:
WAIT ; 4 WAITs in a row is the NRG virtual opcode
WAIT
WAIT
WAIT
; you can do something here
jmp short @loop
Bombing
; The following example bombs the start of the Arena with INT3's.
; Note that it will kill the survivor itself if it was loaded to this area…
; set ES:DI to CS:0000
PUSH CS
POP ES
MOV DI, 0
; Set DX:AX to CCCC:CCCC (which translates to the invalid opcode INT3)
MOV AX, CCCC
MOV DX, CCCC
; Bomb!
INT 86