diff options
| -rw-r--r-- | src/core.rs | 2 | ||||
| -rw-r--r-- | src/core/commands.rs | 2 | ||||
| -rw-r--r-- | src/decode.rs | 2 | ||||
| -rw-r--r-- | src/devices/serial.rs | 2 | ||||
| -rw-r--r-- | src/devices/serial/fifo.rs | 2 | ||||
| -rw-r--r-- | src/exceptions.rs | 2 | ||||
| -rw-r--r-- | src/execload.rs | 2 | ||||
| -rw-r--r-- | src/gdb.rs | 2 | ||||
| -rw-r--r-- | src/instructions.rs | 2 | ||||
| -rw-r--r-- | src/instructions/macros.rs | 2 | ||||
| -rw-r--r-- | src/instructions/rva.rs | 2 | ||||
| -rw-r--r-- | src/instructions/rvi.rs | 2 | ||||
| -rw-r--r-- | src/instructions/rvi/mem.rs | 2 | ||||
| -rw-r--r-- | src/instructions/rvm.rs | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 | ||||
| -rw-r--r-- | src/mem.rs | 2 |
16 files changed, 16 insertions, 16 deletions
diff --git a/src/core.rs b/src/core.rs index 9153e9e..54c2dc4 100644 --- a/src/core.rs +++ b/src/core.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025-2026 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::collections::HashSet; diff --git a/src/core/commands.rs b/src/core/commands.rs index 37ed28e..ab0dd51 100644 --- a/src/core/commands.rs +++ b/src/core/commands.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use crate::gdb; diff --git a/src/decode.rs b/src/decode.rs index be0dbc3..6b274a4 100644 --- a/src/decode.rs +++ b/src/decode.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::sync::atomic::Ordering; diff --git a/src/devices/serial.rs b/src/devices/serial.rs index 7e90748..606fb48 100644 --- a/src/devices/serial.rs +++ b/src/devices/serial.rs @@ -1,7 +1,7 @@ // Copyright (c) 2026 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::{ diff --git a/src/devices/serial/fifo.rs b/src/devices/serial/fifo.rs index dbf4659..307dc29 100644 --- a/src/devices/serial/fifo.rs +++ b/src/devices/serial/fifo.rs @@ -1,7 +1,7 @@ // Copyright (c) 2026 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::io::{self, Read, Write}; diff --git a/src/exceptions.rs b/src/exceptions.rs index 8ea4480..2487cf1 100644 --- a/src/exceptions.rs +++ b/src/exceptions.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use int_enum::IntEnum; diff --git a/src/execload.rs b/src/execload.rs index 2b46599..603481d 100644 --- a/src/execload.rs +++ b/src/execload.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::{fs, path::Path}; @@ -1,7 +1,7 @@ // Copyright (c) 2025-2026 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::{ diff --git a/src/instructions.rs b/src/instructions.rs index 476ae6d..23fcd4e 100644 --- a/src/instructions.rs +++ b/src/instructions.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. #[macro_use] diff --git a/src/instructions/macros.rs b/src/instructions/macros.rs index c8fa8f1..e450417 100644 --- a/src/instructions/macros.rs +++ b/src/instructions/macros.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. #[macro_export] diff --git a/src/instructions/rva.rs b/src/instructions/rva.rs index be1cd03..2ea8b18 100644 --- a/src/instructions/rva.rs +++ b/src/instructions/rva.rs @@ -1,7 +1,7 @@ // Copyright (c) 2026 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::sync::atomic::{AtomicU32, AtomicU64}; diff --git a/src/instructions/rvi.rs b/src/instructions/rvi.rs index 78267ea..5b705a6 100644 --- a/src/instructions/rvi.rs +++ b/src/instructions/rvi.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use crate::{core::Core, decode::Instruction, exceptions::Exception}; diff --git a/src/instructions/rvi/mem.rs b/src/instructions/rvi/mem.rs index ad08a39..f1dc92d 100644 --- a/src/instructions/rvi/mem.rs +++ b/src/instructions/rvi/mem.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use crate::{core::Core, exceptions::Exception, instructions::Instruction}; diff --git a/src/instructions/rvm.rs b/src/instructions/rvm.rs index b87b9f9..e618ae2 100644 --- a/src/instructions/rvm.rs +++ b/src/instructions/rvm.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. // use crate::{core::Core, decode::Instruction, exceptions::Exception}; diff --git a/src/main.rs b/src/main.rs index fb459d8..0201ed3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ // Copyright (c) 2025-2026 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::{io, path::PathBuf, sync::Arc, time::Duration}; @@ -1,7 +1,7 @@ // Copyright (c) 2025-2026 taitep // SPDX-License-Identifier: BSD-2-Clause // -// This file is part of TRVE (https://gitea.taitep.se/taitep/trve) +// This file is part of TRVE (https://git.taitep.se/trve.git) // See LICENSE file in the project root for full license text. use std::sync::{ |
