diff --git a/seminaries/qtrvsim/fibo-hazards/fibo-hazards-template.S b/seminaries/qtrvsim/fibo-hazards/fibo-hazards-template.S
index b2fa4a81fa2b74b949f5603e42a26da284ced2b3..4b58b936a1cd6dafd69b10f888364fd0c27bc43a 100644
--- a/seminaries/qtrvsim/fibo-hazards/fibo-hazards-template.S
+++ b/seminaries/qtrvsim/fibo-hazards/fibo-hazards-template.S
@@ -32,8 +32,9 @@
 
 _start:
 
-	la   a0, fibo_series
-	la   a1, fibo_limit
+	la   a0, fibo_series // la is pseudoinstruction expanded
+	la   a1, fibo_limit  // into two instructions with dependency
+	                     // look for replacements in seminaries
 	lw   a1, 0(a1) // number of elements in the array
 
 //Insert your code there