Update Ver # | File MD5 Hash | Filesize | Download Link |
---|---|---|---|
Update 05.50 | edb3513ec531b2bd28f3a0b52a82a54f | 1011MB | Download |
Update 05.10 | 20632a2295ffde21956fae192fe96de6 | 1011MB | Download |
Update 05.02 | 8bd46bcae1d469e89b1fc62946f9ad0b | 1007MB | Download |
Update 05.00 | 3793993a90347c10223a19c38a643bc7 | 1007MB | Download |
Update 04.51 | 1330b7bf63bf5c93d809b1eb1f4e1f01 | 871MB | [Download](https://archive.org/download/ps5-official-firmwares/System%20Firmwares/Firm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void vcopy(void *vdst, void *vsrc) | |
{ | |
asm volatile ( | |
"vl %v0, 0(%r3), 0 \n" | |
"vst %v0, 0(%r2), 0 \n" | |
); | |
} | |
" | |
0000000000000960 <_ZL5vcopyPvS_>: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int mprotect(void *addr, void *base, size_t len, int prot) | |
{ | |
Result rc=0; | |
static bool isMapped=false; | |
Handle hProc = envGetOwnProcessHandle(); | |
if (isMapped) { | |
rc=svcUnmapProcessCodeMemory(hProc, (u64)addr, (u64)base, len); | |
if (R_FAILED(rc)) { | |
printf(" Error, svcUnmapProcessCodeMemory() failed w. rc: %X\n", rc); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/config.guess b/config.guess | |
index c0adba9..59ec0ce 100755 | |
--- a/config.guess | |
+++ b/config.guess | |
@@ -969,6 +969,9 @@ EOF | |
*) echo hppa-unknown-linux-gnu ;; | |
esac | |
exit ;; | |
+ ppc64le:Linux:*:*) | |
+ echo powerpc64le-unknown-linux-gnu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Copyright 2013, Tarje Nissen-Meyer, Alexandre Fournier, Martin van Driel | |
// Simon Stähler, Kasra Hosseini, Stefanie Hempel | |
// | |
// This file is part of AxiSEM. | |
// It is distributed from the webpage <http://www.axisem.info> | |
// | |
// AxiSEM is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or |