From 36faa1e39c8675a84d7b7762d17e14640e991907 Mon Sep 17 00:00:00 2001 From: taitep Date: Tue, 23 Dec 2025 19:22:11 +0100 Subject: [PATCH] Add license headers to files missing them --- src/basic_uart.rs | 6 ++++++ src/instructions/rvi/mem.rs | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/basic_uart.rs b/src/basic_uart.rs index f178574..3380515 100644 --- a/src/basic_uart.rs +++ b/src/basic_uart.rs @@ -1,3 +1,9 @@ +// Copyright (c) 2025 taitep +// SPDX-License-Identifier: MIT +// +// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// See LICENSE file in the project root for full license text. + use std::collections::VecDeque; use std::io; use std::os::fd::AsFd; diff --git a/src/instructions/rvi/mem.rs b/src/instructions/rvi/mem.rs index 47eb01d..c948519 100644 --- a/src/instructions/rvi/mem.rs +++ b/src/instructions/rvi/mem.rs @@ -1,3 +1,9 @@ +// Copyright (c) 2025 taitep +// SPDX-License-Identifier: MIT +// +// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// See LICENSE file in the project root for full license text. + use crate::{ consts::{Addr, Byte, DWord, HWord, Word}, core::Core,