summaryrefslogtreecommitdiff
blob: 1c152715eb3b44785d80b1c5dff32e4f23dc9e4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Reroute other processes to execute my code

	Title	"Reroute"
	Author	"Jonathan Enders <kannibalenfleisch@web.de>"
DIA:    data	&DIA		#DestinationIndexA for Jump-Instruction
DIB:	data	&DIB		#DestinationIndexB for Jump-Coordinates

S:      add     -2038,DIA	
	add	-2038,DIB	#Move Jump-Instruction to more 
	move    INST,[DIA]	#or less random location
	move	DIS,[DIB]
	
E:      jump    S		#Repeat


INST:	jump	[DIS]		#Instruction to be copied to Destination
DIS:	data	&S		#Address where other processes should jump to