suyu/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp

21 lines
503 B
C++
Raw Normal View History

// Copyright 2018 Yuzu Emulator Team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "common/assert.h"
#include "common/logging/log.h"
#include "core/hle/service/nvdrv/devices/nvhost_as_gpu.h"
namespace Service {
namespace NVDRV {
namespace Devices {
u32 nvhost_as_gpu::ioctl(u32 command, const std::vector<u8>& input, std::vector<u8>& output) {
2018-01-12 04:31:12 +01:00
UNIMPLEMENTED();
return 0;
}
} // namespace Devices
} // namespace NVDRV
} // namespace Service