diff options
author | midipix <writeonce@midipix.org> | 2023-12-23 21:17:35 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2023-12-23 21:17:35 +0000 |
commit | 716654e8dd98767010ab4bc3967bf95496f97859 (patch) | |
tree | 010bedb58a166072dac573d5169bd658c8f67c7a /src/arch | |
parent | 965dca42ea74b4d6c5bbd779e37e7fd758de1cfc (diff) | |
download | mmglue-716654e8dd98767010ab4bc3967bf95496f97859.tar.bz2 mmglue-716654e8dd98767010ab4bc3967bf95496f97859.tar.xz |
add copyright notice to C and Assembly translation units where applicable.
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/nt32/_dlstart.c | 6 | ||||
-rw-r--r-- | src/arch/nt32/cmd.c | 6 | ||||
-rw-r--r-- | src/arch/nt32/crt_glue.c | 6 | ||||
-rw-r--r-- | src/arch/nt32/crt_pe.c | 6 | ||||
-rw-r--r-- | src/arch/nt32/crt_tls.c | 6 | ||||
-rw-r--r-- | src/arch/nt32/debug.c | 6 | ||||
-rw-r--r-- | src/arch/nt32/fs.c | 6 | ||||
-rw-r--r-- | src/arch/nt32/nt32/chelper.S | 6 | ||||
-rw-r--r-- | src/arch/nt32/syscall_disp.c | 6 | ||||
-rw-r--r-- | src/arch/nt32/vtbl.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/_dlstart.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/cmd.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/crt_glue.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/crt_pe.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/crt_tls.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/debug.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/fs.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/syscall_disp.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/unwind.c | 6 | ||||
-rw-r--r-- | src/arch/nt64/vtbl.c | 6 |
20 files changed, 120 insertions, 0 deletions
diff --git a/src/arch/nt32/_dlstart.c b/src/arch/nt32/_dlstart.c index 2cfbcbf..e4f6385 100644 --- a/src/arch/nt32/_dlstart.c +++ b/src/arch/nt32/_dlstart.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + typedef unsigned int uint32_t; int dlstart( diff --git a/src/arch/nt32/cmd.c b/src/arch/nt32/cmd.c index 932737d..92a3068 100644 --- a/src/arch/nt32/cmd.c +++ b/src/arch/nt32/cmd.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <sys/cmd.h> #include "syscall.h" diff --git a/src/arch/nt32/crt_glue.c b/src/arch/nt32/crt_glue.c index ccebd64..8e9ac65 100644 --- a/src/arch/nt32/crt_glue.c +++ b/src/arch/nt32/crt_glue.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <unistd.h> #include <stdint.h> #include <pthread.h> diff --git a/src/arch/nt32/crt_pe.c b/src/arch/nt32/crt_pe.c index 0dc75a4..3024bbf 100644 --- a/src/arch/nt32/crt_pe.c +++ b/src/arch/nt32/crt_pe.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include "pthread_impl.h" #include <threads.h> diff --git a/src/arch/nt32/crt_tls.c b/src/arch/nt32/crt_tls.c index 20080c6..c6d5a77 100644 --- a/src/arch/nt32/crt_tls.c +++ b/src/arch/nt32/crt_tls.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <unistd.h> #include <stdint.h> #include <stddef.h> diff --git a/src/arch/nt32/debug.c b/src/arch/nt32/debug.c index e99a83e..ba72d4b 100644 --- a/src/arch/nt32/debug.c +++ b/src/arch/nt32/debug.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <stdint.h> #include <stddef.h> #include <signal.h> diff --git a/src/arch/nt32/fs.c b/src/arch/nt32/fs.c index 11c9b7d..2cf93ee 100644 --- a/src/arch/nt32/fs.c +++ b/src/arch/nt32/fs.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <sys/fs.h> #include "syscall.h" diff --git a/src/arch/nt32/nt32/chelper.S b/src/arch/nt32/nt32/chelper.S index 6d6a52b..8e17e68 100644 --- a/src/arch/nt32/nt32/chelper.S +++ b/src/arch/nt32/nt32/chelper.S @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #ifdef LIBC_NO_COMPLEX .globl ___udivdi3 diff --git a/src/arch/nt32/syscall_disp.c b/src/arch/nt32/syscall_disp.c index 61ff807..18747ff 100644 --- a/src/arch/nt32/syscall_disp.c +++ b/src/arch/nt32/syscall_disp.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <unistd.h> #include <stdint.h> #include <stddef.h> diff --git a/src/arch/nt32/vtbl.c b/src/arch/nt32/vtbl.c index ad0a0e9..920144a 100644 --- a/src/arch/nt32/vtbl.c +++ b/src/arch/nt32/vtbl.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <unistd.h> #include <stdint.h> #include "psxglue.h" diff --git a/src/arch/nt64/_dlstart.c b/src/arch/nt64/_dlstart.c index 40498da..f078daa 100644 --- a/src/arch/nt64/_dlstart.c +++ b/src/arch/nt64/_dlstart.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + typedef unsigned int uint32_t; int _dlstart( diff --git a/src/arch/nt64/cmd.c b/src/arch/nt64/cmd.c index 932737d..92a3068 100644 --- a/src/arch/nt64/cmd.c +++ b/src/arch/nt64/cmd.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <sys/cmd.h> #include "syscall.h" diff --git a/src/arch/nt64/crt_glue.c b/src/arch/nt64/crt_glue.c index ccebd64..8e9ac65 100644 --- a/src/arch/nt64/crt_glue.c +++ b/src/arch/nt64/crt_glue.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <unistd.h> #include <stdint.h> #include <pthread.h> diff --git a/src/arch/nt64/crt_pe.c b/src/arch/nt64/crt_pe.c index 0dc75a4..3024bbf 100644 --- a/src/arch/nt64/crt_pe.c +++ b/src/arch/nt64/crt_pe.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include "pthread_impl.h" #include <threads.h> diff --git a/src/arch/nt64/crt_tls.c b/src/arch/nt64/crt_tls.c index 20080c6..c6d5a77 100644 --- a/src/arch/nt64/crt_tls.c +++ b/src/arch/nt64/crt_tls.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <unistd.h> #include <stdint.h> #include <stddef.h> diff --git a/src/arch/nt64/debug.c b/src/arch/nt64/debug.c index e99a83e..ba72d4b 100644 --- a/src/arch/nt64/debug.c +++ b/src/arch/nt64/debug.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <stdint.h> #include <stddef.h> #include <signal.h> diff --git a/src/arch/nt64/fs.c b/src/arch/nt64/fs.c index 11c9b7d..2cf93ee 100644 --- a/src/arch/nt64/fs.c +++ b/src/arch/nt64/fs.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <sys/fs.h> #include "syscall.h" diff --git a/src/arch/nt64/syscall_disp.c b/src/arch/nt64/syscall_disp.c index 61ff807..18747ff 100644 --- a/src/arch/nt64/syscall_disp.c +++ b/src/arch/nt64/syscall_disp.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <unistd.h> #include <stdint.h> #include <stddef.h> diff --git a/src/arch/nt64/unwind.c b/src/arch/nt64/unwind.c index 8ed0bdd..4f54ed3 100644 --- a/src/arch/nt64/unwind.c +++ b/src/arch/nt64/unwind.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <stdint.h> #include <signal.h> #include <sys/unwind.h> diff --git a/src/arch/nt64/vtbl.c b/src/arch/nt64/vtbl.c index ad0a0e9..920144a 100644 --- a/src/arch/nt64/vtbl.c +++ b/src/arch/nt64/vtbl.c @@ -1,3 +1,9 @@ +/**************************************************************************/ +/* mmglue: midipix architecture- and target-specific bits for musl libc */ +/* Copyright (C) 2013--2023 SysDeer Technologies, LLC */ +/* Released under the Standard MIT License; see COPYING.MMGLUE. */ +/**************************************************************************/ + #include <unistd.h> #include <stdint.h> #include "psxglue.h" |