mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-19 09:25:33 -04:00

This is loosely based on WAIO: - Load akloader from a prebuilt akloader.nds. Must be extracted from a given kernel. - Remaining code based on the R4 variant of romloader.cpp - Add setting to alternate between nds-bootstrap and given kernel
19 lines
367 B
C++
19 lines
367 B
C++
/*
|
|
Copyright (C) 2024 lifehackerhansol
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <nds/ndstypes.h>
|
|
#include <string>
|
|
|
|
#include "ILauncher.h"
|
|
|
|
class AcekardLauncher : public ILauncher {
|
|
public:
|
|
bool launchRom(std::string romPath, std::string savePath, u32 flags, u32 cheatOffset,
|
|
u32 cheatSize) override;
|
|
};
|