We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba1dfab commit 1f8f966Copy full SHA for 1f8f966
proxyclient/m1n1/adt.py
@@ -154,6 +154,25 @@
154
"pad" / Hex(Int16ul),
155
)
156
157
+SIODMAShimData = Struct(
158
+ "name" / FourCC,
159
+ "unk" / Hex(Int32ul)[8],
160
+)
161
+
162
+SIOMapRange = Struct(
163
+ "unk1" / FourCC,
164
+ "unk2" / Hex(Int32ul),
165
+ "unk3" / Hex(Int32ul),
166
+ "unk4" / Hex(Int32ul),
167
+ "unk5" / Hex(Int32ul),
168
169
170
+SIODeviceType = Struct(
171
+ "id" / FourCC,
172
+ "unk1" / Hex(Int32ul),
173
174
175
176
DEV_PROPERTIES = {
177
"pmgr": {
178
"*": {
@@ -236,6 +255,13 @@
236
255
237
256
"audio-stream-formatter": FourCC,
238
257
}
258
+ },
259
+ "sio": {
260
+ "*": {
261
+ "map-range": SIOMapRange,
262
+ "device-type": SafeGreedyRange(SIODeviceType),
263
+ "dmashim": SafeGreedyRange(SIODMAShimData),
264
+ }
239
265
240
266
241
267
0 commit comments