mirror of
https://github.com/gligli/nulldc-360.git
synced 2025-04-02 11:11:56 -04:00
17 lines
265 B
C++
17 lines
265 B
C++
// Twinstick (svo)
|
|
#pragma once
|
|
|
|
namespace EmulatedDevices
|
|
{
|
|
|
|
class Twinstick : public FT0
|
|
{
|
|
public:
|
|
Twinstick(maple_device_instance* instance);
|
|
|
|
u32 DMA(u32 Command,
|
|
u32* buffer_in, u32 buffer_in_len,
|
|
u32* buffer_out, u32& buffer_out_len);
|
|
};
|
|
|
|
} //namespace
|