This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
suyu/src/core/hle/service/am/am.h

15 lines
251 B
C++

// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
namespace Core {
class System;
}
namespace Service::AM {
void LoopProcess(Core::System& system);
} // namespace Service::AM