diff options
author | bd <bdunaisky@umass.edu> | 2025-04-28 03:44:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-28 03:44:42 +0000 |
commit | 013a79547aa465872d0262b2f5c24e73f9556869 (patch) | |
tree | 28cc8f2ea6e5aa1a74f328de8594b0ad5995fa66 /inc/controller.h | |
parent | 5653b2a033e7a4173d2f178b5ce52384666d3d7b (diff) | |
parent | 336faf3fd701aaf962613abd1ff0a69cbdf021ce (diff) |
Merge pull request #69 from bdunahu/vector_ext
Vector ext
Diffstat (limited to 'inc/controller.h')
-rw-r--r-- | inc/controller.h | 6 |
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. */ |