Merge pull request #1867 from mailwl/srv-update

srv: Update according 3dbrew
This commit is contained in:
bunnei 2016-06-28 18:53:10 -04:00 committed by GitHub
commit 87c07643ff
2 changed files with 125 additions and 15 deletions

View file

@ -32,6 +32,10 @@ constexpr u32 CallingPidDesc() {
return 0x20;
}
constexpr u32 TransferHandleDesc() {
return 0x20;
}
constexpr u32 StaticBufferDesc(u32 size, unsigned int buffer_id) {
return 0x2 | (size << 14) | ((buffer_id & 0xF) << 10);
}