summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
Diffstat (limited to 'sources')
-rw-r--r--sources/bits.c8
-rw-r--r--sources/chip8.c8
-rw-r--r--sources/log.c8
-rw-r--r--sources/main.c8
-rw-r--r--sources/meta/disasm.c7
-rw-r--r--sources/meta/exec.c8
-rw-r--r--sources/meta/undef.c8
7 files changed, 55 insertions, 0 deletions
diff --git a/sources/bits.c b/sources/bits.c
index ba52f4f..0197436 100644
--- a/sources/bits.c
+++ b/sources/bits.c
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 2025 dwlr <dweller@cabin.digital>
+ *
+ * BSD 3-Clause License (BSD-3-Clause)
+ * See LICENSE for details
+ */
+
+
#define iota __COUNTER__
#define lengthof(x) (sizeof(x) / sizeof((x)[0]))
diff --git a/sources/chip8.c b/sources/chip8.c
index f5a28a8..1c5f907 100644
--- a/sources/chip8.c
+++ b/sources/chip8.c
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 2025 dwlr <dweller@cabin.digital>
+ *
+ * BSD 3-Clause License (BSD-3-Clause)
+ * See LICENSE for details
+ */
+
+
#define C8_RESET_VECTOR 0x200
#define C8_CYCLES_PER_FRAME 1000
diff --git a/sources/log.c b/sources/log.c
index ba0aa86..b289939 100644
--- a/sources/log.c
+++ b/sources/log.c
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 2025 dwlr <dweller@cabin.digital>
+ *
+ * BSD 3-Clause License (BSD-3-Clause)
+ * See LICENSE for details
+ */
+
+
typedef enum log_kind
{
LK_DEBUG,
diff --git a/sources/main.c b/sources/main.c
index 2036b73..5bc1c42 100644
--- a/sources/main.c
+++ b/sources/main.c
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 2025 dwlr <dweller@cabin.digital>
+ *
+ * BSD 3-Clause License (BSD-3-Clause)
+ * See LICENSE for details
+ */
+
+
#define _DEFAULT_SOURCE
#include <stdlib.h>
#include <stdio.h>
diff --git a/sources/meta/disasm.c b/sources/meta/disasm.c
index 82e715e..841a455 100644
--- a/sources/meta/disasm.c
+++ b/sources/meta/disasm.c
@@ -1,3 +1,10 @@
+/*
+ * Copyright (C) 2025 dwlr <dweller@cabin.digital>
+ *
+ * BSD 3-Clause License (BSD-3-Clause)
+ * See LICENSE for details
+ */
+
#define X_C8_PRELUDE
#define X_C8_EPILOGUE
diff --git a/sources/meta/exec.c b/sources/meta/exec.c
index a39aef2..b5aaba4 100644
--- a/sources/meta/exec.c
+++ b/sources/meta/exec.c
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 2025 dwlr <dweller@cabin.digital>
+ *
+ * BSD 3-Clause License (BSD-3-Clause)
+ * See LICENSE for details
+ */
+
+
#define BEGIN do{
#define END }while(0)
diff --git a/sources/meta/undef.c b/sources/meta/undef.c
index 01ce25f..dc538c1 100644
--- a/sources/meta/undef.c
+++ b/sources/meta/undef.c
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 2025 dwlr <dweller@cabin.digital>
+ *
+ * BSD 3-Clause License (BSD-3-Clause)
+ * See LICENSE for details
+ */
+
+
#undef X_C8_PRELUDE
#undef X_C8_EPILOGUE