mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 15:01:00 +01:00
20 lines
299 B
C++
20 lines
299 B
C++
|
#pragma once
|
||
|
|
||
|
#include <framework/logging.hpp>
|
||
|
|
||
|
#include <memory.h>
|
||
|
|
||
|
#include <teakra/teakra.h>
|
||
|
|
||
|
namespace Memory {
|
||
|
|
||
|
struct DSPDevice : MemoryAccessHandler {
|
||
|
std::shared_ptr<spdlog::logger> logger;
|
||
|
|
||
|
DSPDevice(LogManager& log_manager);
|
||
|
|
||
|
// Teakra::Teakra teakra;
|
||
|
};
|
||
|
|
||
|
} // namespace Memory
|