mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-21 02:45:00 +00:00
initial work on linker
This commit is contained in:
parent
76987fb932
commit
a09e2eb65a
4 changed files with 68 additions and 1 deletions
16
src/Core/PS4/Linker.cpp
Normal file
16
src/Core/PS4/Linker.cpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#include "Linker.h"
|
||||
|
||||
Linker::Linker()
|
||||
{
|
||||
}
|
||||
|
||||
Linker::~Linker()
|
||||
{
|
||||
}
|
||||
|
||||
Module* Linker::LoadModule(const std::string& elf_name)
|
||||
{
|
||||
auto* m = new Module;
|
||||
|
||||
return m;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue