From c7a89595eadc5ce2f988b238916537c441700bed Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sun, 6 Oct 2024 16:27:38 -0400 Subject: change license to gpl3 --- src/cpu.zig | 6 ++++++ src/gpio.zig | 6 ++++++ src/interrupt.zig | 6 ++++++ src/main.zig | 6 ++++++ src/startup.zig | 6 ++++++ src/timer.zig | 6 ++++++ 6 files changed, 36 insertions(+) (limited to 'src') 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 +// +// 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 . + 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 +// +// 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 . + 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 +// +// 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 . + 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 +// +// 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 . + 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 +// +// 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 . + 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 +// +// 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 . + const interrupt = @import("interrupt.zig"); const driver_armcortex = packed struct { -- cgit v1.2.3