From 1c7da065ad8a8df5e64a6c42875ee58b7bee3d56 Mon Sep 17 00:00:00 2001 From: beeanyew Date: Mon, 17 May 2021 14:45:46 +0200 Subject: [PATCH] Add missing copyright to A314 source files --- a314/a314.cc | 2 +- a314/a314.h | 5 ++++- a314/a314device/a314.h | 4 ++++ a314/a314device/a314driver.c | 2 +- a314/a314device/device.c | 4 ++++ a314/a314device/device.h | 4 ++++ a314/a314device/fix_mem_region.c | 4 ++++ a314/a314device/fix_mem_region.h | 4 ++++ a314/a314device/int_server.asm | 4 ++++ a314/a314device/proto_a314.h | 4 ++++ a314/a314device/protocol.h | 4 ++++ a314/a314device/romtag.asm | 4 ++++ a314/a314device/sockets.c | 4 ++++ a314/a314device/sockets.h | 4 ++++ a314/a314device/startup.c | 4 ++++ a314/a314device/startup.h | 4 ++++ 16 files changed, 58 insertions(+), 3 deletions(-) diff --git a/a314/a314.cc b/a314/a314.cc index c14e7c1..a7081b7 100644 --- a/a314/a314.cc +++ b/a314/a314.cc @@ -1,5 +1,5 @@ /* - * Copyright 2020 Niklas Ekström + * Copyright 2020-2021 Niklas Ekström * Based on a314d daemon for A314. */ diff --git a/a314/a314.h b/a314/a314.h index a8c8756..e05780d 100644 --- a/a314/a314.h +++ b/a314/a314.h @@ -1,4 +1,7 @@ -// A314 emulation. +/* + * Copyright 2020-2021 Niklas Ekström + * A314 emulation header + */ #ifndef A314_H #define A314_H diff --git a/a314/a314device/a314.h b/a314/a314device/a314.h index 0c10f25..e457f74 100644 --- a/a314/a314device/a314.h +++ b/a314/a314device/a314.h @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #ifndef DEVICES_A314_H #define DEVICES_A314_H diff --git a/a314/a314device/a314driver.c b/a314/a314device/a314driver.c index 6db2dc6..176f504 100644 --- a/a314/a314device/a314driver.c +++ b/a314/a314device/a314driver.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 Niklas Ekström + * Copyright 2018-2021 Niklas Ekström */ #include diff --git a/a314/a314device/device.c b/a314/a314device/device.c index 7863c96..a35a93d 100644 --- a/a314/a314device/device.c +++ b/a314/a314device/device.c @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #include #include #include diff --git a/a314/a314device/device.h b/a314/a314device/device.h index 4aff373..dc9b19c 100644 --- a/a314/a314device/device.h +++ b/a314/a314device/device.h @@ -1,2 +1,6 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + extern char device_name[]; extern char id_string[]; diff --git a/a314/a314device/fix_mem_region.c b/a314/a314device/fix_mem_region.c index 802dcae..fd40db2 100644 --- a/a314/a314device/fix_mem_region.c +++ b/a314/a314device/fix_mem_region.c @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #include #include #include diff --git a/a314/a314device/fix_mem_region.h b/a314/a314device/fix_mem_region.h index 02a46fe..ea6fddf 100644 --- a/a314/a314device/fix_mem_region.h +++ b/a314/a314device/fix_mem_region.h @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #include extern ULONG translate_address_a314(__reg("a0") void *address); diff --git a/a314/a314device/int_server.asm b/a314/a314device/int_server.asm index e7d582f..f43dd72 100644 --- a/a314/a314device/int_server.asm +++ b/a314/a314device/int_server.asm @@ -1,3 +1,7 @@ +* +* Copyright 2020-2021 Niklas Ekström +* + XDEF _IntServer CODE diff --git a/a314/a314device/proto_a314.h b/a314/a314device/proto_a314.h index 982da4f..5167d29 100644 --- a/a314/a314device/proto_a314.h +++ b/a314/a314device/proto_a314.h @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #ifndef PROTO_A314_H #define PROTO_A314_H diff --git a/a314/a314device/protocol.h b/a314/a314device/protocol.h index 28dc168..3f06b15 100644 --- a/a314/a314device/protocol.h +++ b/a314/a314device/protocol.h @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #include // Packet types that are sent across the physical channel. diff --git a/a314/a314device/romtag.asm b/a314/a314device/romtag.asm index ef4a867..1d4fb49 100644 --- a/a314/a314device/romtag.asm +++ b/a314/a314device/romtag.asm @@ -1,3 +1,7 @@ +* +* Copyright 2020-2021 Niklas Ekström +* + RTC_MATCHWORD: equ $4afc RTF_AUTOINIT: equ (1<<7) NT_DEVICE: equ 3 diff --git a/a314/a314device/sockets.c b/a314/a314device/sockets.c index 8a329c5..89910b1 100644 --- a/a314/a314device/sockets.c +++ b/a314/a314device/sockets.c @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #include #include "sockets.h" diff --git a/a314/a314device/sockets.h b/a314/a314device/sockets.h index ba439aa..efc5ffb 100644 --- a/a314/a314device/sockets.h +++ b/a314/a314device/sockets.h @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #include #include diff --git a/a314/a314device/startup.c b/a314/a314device/startup.c index ccb3bb6..79437c0 100644 --- a/a314/a314device/startup.c +++ b/a314/a314device/startup.c @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #include #include #include diff --git a/a314/a314device/startup.h b/a314/a314device/startup.h index 933598f..85884f7 100644 --- a/a314/a314device/startup.h +++ b/a314/a314device/startup.h @@ -1,3 +1,7 @@ +/* + * Copyright 2020-2021 Niklas Ekström + */ + #include #include #include -- 2.39.2