Stub some more cam:u functions (#263)

* Stub some cam:u functions

* Update cam.cpp
This commit is contained in:
wheremyfoodat 2023-09-07 18:22:26 +03:00 committed by GitHub
parent 35fa6783c6
commit 5255fac387
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 1 deletions

View file

@ -25,6 +25,9 @@ class CAMService {
void driverInitialize(u32 messagePointer);
void getMaxLines(u32 messagePointer);
void getBufferErrorInterruptEvent(u32 messagePointer);
void setContrast(u32 messagePointer);
void setFrameRate(u32 messagePointer);
void setTransferLines(u32 messagePointer);
public:
CAMService(Memory& mem, Kernel& kernel) : mem(mem), kernel(kernel) {}