From 91de993122e57f986432a0e6ea2b648ed73175f1 Mon Sep 17 00:00:00 2001
From: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Date: Mon, 28 Mar 2022 00:24:07 +0200
Subject: [PATCH] seminaries/qtrvsim/fibo-hazards: Update rest of the template
 texts for RISC-V.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
---
 .../qtrvsim/fibo-hazards/fibo-hazards-template.S | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/seminaries/qtrvsim/fibo-hazards/fibo-hazards-template.S b/seminaries/qtrvsim/fibo-hazards/fibo-hazards-template.S
index acb5b5b..063fd41 100644
--- a/seminaries/qtrvsim/fibo-hazards/fibo-hazards-template.S
+++ b/seminaries/qtrvsim/fibo-hazards/fibo-hazards-template.S
@@ -1,11 +1,11 @@
 // fibo-hazards.S file template, rename and implement the algorithm
-// Test algorithm in qtmips_gui program
+// Test algorithm in qtrvsim_gui program
 // Select the CPU core configuration to
 //    Pipelined without hazard unit and cache
 // This option select version where RAW dependencies which leads
 // to hazards are not resolved in hardware, you need to schedule
 // instruction execution according to the pipeline structure
-// (classical 5-stage MIPS) such way, that no dependency results
+// (classical 5-stage RISC-V) such way, that no dependency results
 // in a hazard
 
 
@@ -19,13 +19,13 @@
 // at address fibo_series, the series has to be followed by at least
 // one zero element
 
-// When tested by actual qtmips_cli version, the variant without hazard
-// unit cannot be selected (this is WIP for the test script), use qtmips_gui
+// When tested by actual qtrvsim_cli version, the variant without hazard
+// unit cannot be selected (this is WIP for the test script), use qtrvsim_gui
 // which is fully configurable
 
 // Directives to make interesting windows visible
-#pragma qtmips show registers
-#pragma qtmips show memory
+#pragma qtrvsim show registers
+#pragma qtrvsim show memory
 
 .option norelax
 
@@ -51,7 +51,7 @@ end_loop:
 	nop
 
 .data
-// .align    2 // not supported by QtMips yet
+// .align    2 // not supported by QtRVSim yet
 
 fibo_limit:
 	.word 15
@@ -59,4 +59,4 @@ fibo_series:
 	.skip 1000*4
 
 // Specify location to show in memory window
-#pragma qtmips focus memory fibo_limit
+#pragma qtrvsim focus memory fibo_limit
-- 
GitLab