Compare commits
37 Commits
20_support
...
1.9.0-prer
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d3f3c6e56 | ||
|
|
4d4f0ba968 | ||
|
|
cc4531e3bf | ||
|
|
0e2ef545f9 | ||
|
|
f1ca7db562 | ||
|
|
d5567b5363 | ||
|
|
f9165c472e | ||
|
|
b2dd3b7dce | ||
|
|
66acab02db | ||
|
|
2c50ef717a | ||
|
|
d305d48a7e | ||
|
|
cb032006d5 | ||
|
|
8da6bc59a7 | ||
|
|
b7ec64ea16 | ||
|
|
bc44ffe70d | ||
|
|
a6847ca70e | ||
|
|
3af8757c3b | ||
|
|
f55cf42433 | ||
|
|
07df13e2a0 | ||
|
|
791edf87a0 | ||
|
|
b1ca5b4049 | ||
|
|
4580a352c0 | ||
|
|
28296e2aac | ||
|
|
b80f0944ab | ||
|
|
96d4546498 | ||
|
|
86e4bed056 | ||
|
|
2e204ccbaf | ||
|
|
b27999a116 | ||
|
|
98e5bd4411 | ||
|
|
4c5c5c85e3 | ||
|
|
3e19e4d004 | ||
|
|
66fcf33a2c | ||
|
|
d147f6f93b | ||
|
|
3dd5c98f52 | ||
|
|
b9b01bbbd1 | ||
|
|
6352397203 | ||
|
|
ef5334c3ca |
4
emummc/.gitrepo
vendored
4
emummc/.gitrepo
vendored
@@ -6,7 +6,7 @@
|
|||||||
[subrepo]
|
[subrepo]
|
||||||
remote = https://github.com/m4xw/emummc
|
remote = https://github.com/m4xw/emummc
|
||||||
branch = develop
|
branch = develop
|
||||||
commit = d248ea6f700c3e6987549e30a1e2eeb609ce9f8c
|
commit = 7522f1f6054a71bdff5beadee0302cead1235be3
|
||||||
parent = 9112461620330ba73a74926edd4c08b3cc0310f0
|
parent = 0e2ef545f947d24c6add254874ab493ba84bbdc9
|
||||||
method = merge
|
method = merge
|
||||||
cmdver = 0.4.1
|
cmdver = 0.4.1
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -6,7 +6,7 @@
|
|||||||
[subrepo]
|
[subrepo]
|
||||||
remote = https://github.com/Atmosphere-NX/Atmosphere-libs
|
remote = https://github.com/Atmosphere-NX/Atmosphere-libs
|
||||||
branch = master
|
branch = master
|
||||||
commit = 989fb7be0c68bf229fe6789428b6c448b6de142a
|
commit = 9e8cbe3faa4604e9ae162546d13a74755ce30667
|
||||||
parent = be19749841e581de4cc5d38f39f4de5fa4046c52
|
parent = 4d4f0ba96876d20e505c7aa11c9bf215f276dd8b
|
||||||
method = merge
|
method = merge
|
||||||
cmdver = 0.4.1
|
cmdver = 0.4.1
|
||||||
|
|||||||
@@ -57,8 +57,8 @@ namespace ams::svc {
|
|||||||
|
|
||||||
/* This is the highest SVC version supported by Atmosphere, to be updated on new kernel releases. */
|
/* This is the highest SVC version supported by Atmosphere, to be updated on new kernel releases. */
|
||||||
/* NOTE: Official kernel versions have SVC major = SDK major + 4, SVC minor = SDK minor. */
|
/* NOTE: Official kernel versions have SVC major = SDK major + 4, SVC minor = SDK minor. */
|
||||||
constexpr inline u32 SupportedKernelMajorVersion = ConvertToSvcMajorVersion(19);
|
constexpr inline u32 SupportedKernelMajorVersion = ConvertToSvcMajorVersion(20);
|
||||||
constexpr inline u32 SupportedKernelMinorVersion = ConvertToSvcMinorVersion( 3);
|
constexpr inline u32 SupportedKernelMinorVersion = ConvertToSvcMinorVersion( 5);
|
||||||
|
|
||||||
constexpr inline u32 SupportedKernelVersion = EncodeKernelVersion(SupportedKernelMajorVersion, SupportedKernelMinorVersion);
|
constexpr inline u32 SupportedKernelVersion = EncodeKernelVersion(SupportedKernelMajorVersion, SupportedKernelMinorVersion);
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ namespace ams::boot {
|
|||||||
alignas(os::MemoryPageSize) u8 g_work_page[os::MemoryPageSize];
|
alignas(os::MemoryPageSize) u8 g_work_page[os::MemoryPageSize];
|
||||||
|
|
||||||
constexpr const u8 FuseeBin[] = {
|
constexpr const u8 FuseeBin[] = {
|
||||||
#embed ATMOSPHERE_BOOT_FUSEE_PATH
|
#embed <fusee.bin>
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Helpers. */
|
/* Helpers. */
|
||||||
|
|||||||
@@ -127,7 +127,7 @@ $(OFILES) : $(ATMOSPHERE_LIBRARIES_DIR)/libstratosphere/$(ATMOSPHERE_LIBRARY_DIR
|
|||||||
@npdmtool $< $@
|
@npdmtool $< $@
|
||||||
@echo built ... $(notdir $@)
|
@echo built ... $(notdir $@)
|
||||||
|
|
||||||
boot_power_utils.o: CXXFLAGS += -DATMOSPHERE_BOOT_FUSEE_PATH=\"$(ATMOSPHERE_LIBRARIES_DIR)/../fusee/$(ATMOSPHERE_BOOT_OUT_DIR)/fusee.bin\"
|
boot_power_utils.o: CXXFLAGS += --embed-dir="$(ATMOSPHERE_LIBRARIES_DIR)/../fusee/$(ATMOSPHERE_BOOT_OUT_DIR)/"
|
||||||
|
|
||||||
-include $(DEPENDS)
|
-include $(DEPENDS)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user