summaryrefslogtreecommitdiff
path: root/inc/controller.h
diff options
context:
space:
mode:
authorbd <bdunaisky@umass.edu>2025-04-28 03:44:42 +0000
committerGitHub <noreply@github.com>2025-04-28 03:44:42 +0000
commit013a79547aa465872d0262b2f5c24e73f9556869 (patch)
tree28cc8f2ea6e5aa1a74f328de8594b0ad5995fa66 /inc/controller.h
parent5653b2a033e7a4173d2f178b5ce52384666d3d7b (diff)
parent336faf3fd701aaf962613abd1ff0a69cbdf021ce (diff)
Merge pull request #69 from bdunahu/vector_ext
Vector ext
Diffstat (limited to 'inc/controller.h')
-rw-r--r--inc/controller.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/inc/controller.h b/inc/controller.h
index b7fa835..cd59fc8 100644
--- a/inc/controller.h
+++ b/inc/controller.h
@@ -49,7 +49,11 @@ class Controller : public Stage
/**
* @return a copy of gprs.
*/
- std::array<int, GPR_NUM> get_gprs();
+ std::array<signed int, GPR_NUM> get_gprs();
+ /**
+ * @return a copy of vrs.
+ */
+ std::array<std::array<signed int, V_R_LIMIT>, V_NUM> get_vrs();
/**
* @return the pc.
*/