Skip to content

Commit

Permalink
Mention ISA=legal on --version
Browse files Browse the repository at this point in the history
  • Loading branch information
pubby committed Dec 9, 2023
1 parent 90c8f48 commit d7ba0b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,12 @@ int main(int argc, char** argv)

if(vm.count("version"))
{
std::cout << "NesFab " << VERSION << " (" << GIT_COMMIT << ", " << __DATE__ << ")\n";
std::cout << "NesFab " << VERSION << " (" << GIT_COMMIT << ", " << __DATE__ << ")";
#ifdef LEGAL
std::cout << " (ISA=legal)";
#endif
std::cout <<
"\n"
"Copyright (C) 2023, Patrick Bene\n"
"This is free software. "
"There is no warranty.\n";
Expand Down

0 comments on commit d7ba0b8

Please sign in to comment.