Merge pull request #4733 from zhaowenlan1779/ps

service/ps: Implement PS:EncryptDecryptAes
This commit is contained in:
Pengfei Zhu 2019-04-29 21:39:53 +08:00 committed by GitHub
commit 37861526ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 164 additions and 2 deletions

View file

@ -220,6 +220,7 @@ void DebuggerBackend::Write(const Entry& entry) {
SUB(Service, SOC) \
SUB(Service, IR) \
SUB(Service, Y2R) \
SUB(Service, PS) \
CLS(HW) \
SUB(HW, Memory) \
SUB(HW, LCD) \

View file

@ -82,6 +82,7 @@ enum class Class : ClassType {
Service_SOC, ///< The SOC (Socket) service
Service_IR, ///< The IR service
Service_Y2R, ///< The Y2R (YUV to RGB conversion) service
Service_PS, ///< The PS (Process) service
HW, ///< Low-level hardware emulation
HW_Memory, ///< Memory-map and address translation
HW_LCD, ///< LCD register emulation