aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-10-06 16:27:38 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-10-06 16:27:38 -0400
commitc7a89595eadc5ce2f988b238916537c441700bed (patch)
treeb999f5f889a4d5bdbdec1b66bb52171c92593034 /src
parent7c4c924fb2ccc963333fb8ce9e745eb524768311 (diff)
change license to gpl3HEADmain
Diffstat (limited to 'src')
-rw-r--r--src/cpu.zig6
-rw-r--r--src/gpio.zig6
-rw-r--r--src/interrupt.zig6
-rw-r--r--src/main.zig6
-rw-r--r--src/startup.zig6
-rw-r--r--src/timer.zig6
6 files changed, 36 insertions, 0 deletions
diff --git a/src/cpu.zig b/src/cpu.zig
index 58f5f40..f9d9f33 100644
--- a/src/cpu.zig
+++ b/src/cpu.zig
@@ -1,3 +1,9 @@
+// Copyright (C) 2024 Clyne Sullivan <clyne@bitgloo.com>
+//
+// Distributed under the GNU GPL v3 or later. You should have received a copy of
+// the GNU General Public License along with this program.
+// If not, see <https://www.gnu.org/licenses/>.
+
pub fn interrupt_disable() void {
asm volatile("cpsid i");
}
diff --git a/src/gpio.zig b/src/gpio.zig
index c0bf6ba..9313c38 100644
--- a/src/gpio.zig
+++ b/src/gpio.zig
@@ -1,3 +1,9 @@
+// Copyright (C) 2024 Clyne Sullivan <clyne@bitgloo.com>
+//
+// Distributed under the GNU GPL v3 or later. You should have received a copy of
+// the GNU General Public License along with this program.
+// If not, see <https://www.gnu.org/licenses/>.
+
const mode = enum(u32) {
alternate_0 = 0,
alternate_1,
diff --git a/src/interrupt.zig b/src/interrupt.zig
index f00fa22..8aea51f 100644
--- a/src/interrupt.zig
+++ b/src/interrupt.zig
@@ -1,3 +1,9 @@
+// Copyright (C) 2024 Clyne Sullivan <clyne@bitgloo.com>
+//
+// Distributed under the GNU GPL v3 or later. You should have received a copy of
+// the GNU General Public License along with this program.
+// If not, see <https://www.gnu.org/licenses/>.
+
extern const init_vector_table: [2]u32;
const vector_table_type = [128] *const fn () void; // up to 256
diff --git a/src/main.zig b/src/main.zig
index 346ca56..6bf235c 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -1,3 +1,9 @@
+// Copyright (C) 2024 Clyne Sullivan <clyne@bitgloo.com>
+//
+// Distributed under the GNU GPL v3 or later. You should have received a copy of
+// the GNU General Public License along with this program.
+// If not, see <https://www.gnu.org/licenses/>.
+
const cpu = @import("cpu.zig");
const gpio = @import("gpio.zig");
const interrupt = @import("interrupt.zig");
diff --git a/src/startup.zig b/src/startup.zig
index f7c7712..5d4bc41 100644
--- a/src/startup.zig
+++ b/src/startup.zig
@@ -1,3 +1,9 @@
+// Copyright (C) 2024 Clyne Sullivan <clyne@bitgloo.com>
+//
+// Distributed under the GNU GPL v3 or later. You should have received a copy of
+// the GNU General Public License along with this program.
+// If not, see <https://www.gnu.org/licenses/>.
+
const main = @import("main.zig");
extern const __data_flash: u32;
diff --git a/src/timer.zig b/src/timer.zig
index 00fd6ba..b86241c 100644
--- a/src/timer.zig
+++ b/src/timer.zig
@@ -1,3 +1,9 @@
+// Copyright (C) 2024 Clyne Sullivan <clyne@bitgloo.com>
+//
+// Distributed under the GNU GPL v3 or later. You should have received a copy of
+// the GNU General Public License along with this program.
+// If not, see <https://www.gnu.org/licenses/>.
+
const interrupt = @import("interrupt.zig");
const driver_armcortex = packed struct {