From 62b827f474f0aa2152dd339fcc7cf31084e16a0b Mon Sep 17 00:00:00 2001 From: emmauss Date: Tue, 20 Feb 2018 22:09:23 +0200 Subject: Split main project into core,graphics and chocolarm4 subproject (#29) --- Ryujinx.Core/Loaders/ElfDyn.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Ryujinx.Core/Loaders/ElfDyn.cs (limited to 'Ryujinx.Core/Loaders/ElfDyn.cs') diff --git a/Ryujinx.Core/Loaders/ElfDyn.cs b/Ryujinx.Core/Loaders/ElfDyn.cs new file mode 100644 index 00000000..2ed50b3e --- /dev/null +++ b/Ryujinx.Core/Loaders/ElfDyn.cs @@ -0,0 +1,15 @@ +namespace Ryujinx.Core.Loaders +{ + struct ElfDyn + { + public ElfDynTag Tag { get; private set; } + + public long Value { get; private set; } + + public ElfDyn(ElfDynTag Tag, long Value) + { + this.Tag = Tag; + this.Value = Value; + } + } +} \ No newline at end of file -- cgit v1.2.3