Implement support for 9.1.0

This commit is contained in:
Michael Scire 2019-12-07 13:44:08 -08:00
parent 48b0b2fc46
commit 33827fe3a3
22 changed files with 71 additions and 26 deletions

View file

@ -66,6 +66,8 @@ namespace ams::hos {
break;
case exosphere::TargetFirmware_900:
g_hos_version = hos::Version_900;
case exosphere::TargetFirmware_910:
g_hos_version = hos::Version_910;
break;
AMS_UNREACHABLE_DEFAULT_CASE();
}
@ -132,6 +134,10 @@ namespace ams::hos {
major = 9;
minor = 0;
micro = 0;
case hos::Version_910:
major = 9;
minor = 1;
micro = 0;
break;
AMS_UNREACHABLE_DEFAULT_CASE();
}