From f6478da5419dd80c72ad8793171483be5cc6a91b Mon Sep 17 00:00:00 2001 From: Riyyi Date: Sat, 20 Aug 2022 11:06:51 +0200 Subject: [PATCH] Emulator: Add copyright header to main, Emu --- src/emu.cpp | 7 +++++++ src/emu.h | 7 +++++++ src/main.cpp | 7 ++++++- 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/src/emu.cpp b/src/emu.cpp index 7b160fc..f3b6d85 100644 --- a/src/emu.cpp +++ b/src/emu.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2022 Riyyi + * Copyright (C) 2022 Th3FrankXD + * + * SPDX-License-Identifier: MIT + */ + #include // uint32_t #include diff --git a/src/emu.h b/src/emu.h index 5f16a56..d7623cc 100644 --- a/src/emu.h +++ b/src/emu.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2022 Riyyi + * Copyright (C) 2022 Th3FrankXD + * + * SPDX-License-Identifier: MIT + */ + #pragma once #include // uint32_t diff --git a/src/main.cpp b/src/main.cpp index 08c2c7c..3cfac14 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,9 @@ -#include +/* + * Copyright (C) 2022 Riyyi + * Copyright (C) 2022 Th3FrankXD + * + * SPDX-License-Identifier: MIT + */ #include "cpu.h" #include "emu.h"