[nostalgia/core] Add NostalgiaCore-Headless

This commit is contained in:
2022-02-17 21:26:56 -06:00
parent c1fc3d48b2
commit fba203a1e7
5 changed files with 164 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
* Copyright 2016 - 2022 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/
#include <ox/std/std.hpp>
#include "../media.hpp"
namespace nostalgia::core {
ox::Result<char*> loadRom(const char*) noexcept {
return OxError(1);
}
void unloadRom(char*) noexcept {
}
}