-
-
Notifications
You must be signed in to change notification settings - Fork 852
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9d2c92
commit 1395fd4
Showing
5 changed files
with
52 additions
and
3 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
v0.0.1 29/09/2023 | ||
================= | ||
First public release . Everything is new |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
shadps4 - An ps4 emulator | ||
========================= | ||
|
||
1. Intro | ||
2. Current status | ||
3. Contributors | ||
4. Greetings | ||
|
||
1.Intro | ||
======= | ||
shadPS4 is a ps4 emulator for windows. Although atm it can't run a lot of stuff , it can emulate perfectly videoout_basic demo from ps4 sdk. Since developing focused on that , don't expect to run anything else atm (ok maybe if you are extreme lucky , you might find something else that works) | ||
|
||
2.Current status | ||
================ | ||
shadps4 is a HLE emulator . Currently on a small amount of functions is emulated , which is one of the reasons compatibility is low. | ||
|
||
|
||
3.Contributors | ||
============== | ||
Although atm project is mostly 1 man's work there are several commits from other devs (ironically there are all greeks) | ||
|
||
- wheremyfoodat - (pcsx-redux dev and Panda3DS founder and dev) | ||
- skmp - (nulldc , reincast and some many others emus founder and dev) | ||
- OFFTKP - (paris... what to tell about paris , ok hydra is one of his best effords :) ) | ||
|
||
4.Greetings | ||
=========== | ||
I would like to thank the following people for helping me so far , with coding or moral support. | ||
|
||
- wheremyfoodat - or @rodakinos for believed me. | ||
- paris - or OFFTKP for not believing me and that made me a better coder :D | ||
- skmp - or kornilios for being good old friend | ||
- PandaBad - our beloved stalker | ||
- emufan4568 - for advices | ||
- velocity - for talking 1-2 times per year on discord server . We miss you velocity | ||
|
||
- probably more , will include in the next readme :D | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#pragma once | ||
#include <string> | ||
#include <string_view> | ||
|
||
namespace Emulator { | ||
constexpr char VERSION[] = "0.0.1"; | ||
} |