diff options
author | bd <bdunahu@operationnull.com> | 2025-04-19 02:45:38 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-19 02:45:38 -0400 |
commit | 327ba8b631436cf21866c05c6c7cae239fe54a5c (patch) | |
tree | a97851f16329c0336969b5e9b60daa58070f1242 /gui/messages.h | |
parent | da25748edb6997629ffb380683c8c736f24033a8 (diff) |
Small UI cleanups
Diffstat (limited to 'gui/messages.h')
-rw-r--r-- | gui/messages.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gui/messages.h b/gui/messages.h index 8f852f7..2af8e6b 100644 --- a/gui/messages.h +++ b/gui/messages.h @@ -10,10 +10,11 @@ const std::vector<std::string> waiting = { "WAITING FOR USER", "FRIENDS MISSING", "BORED", "SLEEPING"}; -const std::vector<std::string> bad_file = { - "BAD FILE", "TRY AGAIN", "SEEKING NEW READING MATERIAL"}; const std::vector<std::string> load_file = { "FILE LOADED", "FINISHED READING DATA. EAGERLY WAITING"}; +const std::vector<std::string> no_instructions = { + "NO PROGRAM PROVIDED", "RISC V[ECTOR]: INSTRUCTIONS NOT INCLUDED", + "NOTHING TO DO, GIVING UP"}; /** * @return an unsolicited waiting message @@ -21,13 +22,13 @@ const std::vector<std::string> load_file = { std::string get_waiting() { return RANDOM_MESSAGE(waiting); } /** - * @return a complaint about a bad file name + * @return confirmation of file upload */ -std::string get_bad_file() { return RANDOM_MESSAGE(bad_file); } +std::string get_load_file() { return RANDOM_MESSAGE(load_file); } /** - * @return confirmation of file upload + * @return a friendly reminder that the simulation is not configured yet */ -std::string get_load_file() { return RANDOM_MESSAGE(load_file); } +std::string get_no_instructions() { return RANDOM_MESSAGE(no_instructions); } #endif // MESSAGES_H |