Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge dmi processor family (RV32, RV64, RV128) from dmidecode-3.3 #84

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/core/dmi.cc
Original file line number Diff line number Diff line change
Expand Up @@ -961,6 +961,9 @@ static const char *dmi_processor_family(uint16_t code)
case 0x140: return "WinChip";
case 0x15E: return "DSP";
case 0x1F4: return "Video Processor";
case 0x200: return "RV32";
case 0x201: return "RV64";
case 0x202: return "RV128";
default: return "";
}
}
Expand Down