summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortaitep <taitep@taitep.se>2026-03-05 19:47:22 +0100
committertaitep <taitep@taitep.se>2026-03-05 19:47:22 +0100
commit3f0640f724ce749fcc5f121d925d1d3fb5151e8c (patch)
treeafd1c637e6693504da2f6f903ff9c0e1faa096d2
parent6b6b778ab0e3dd26f8aaab60411610115d47c3df (diff)
update git repo linksHEADmain
-rw-r--r--src/core.rs2
-rw-r--r--src/core/commands.rs2
-rw-r--r--src/decode.rs2
-rw-r--r--src/devices/serial.rs2
-rw-r--r--src/devices/serial/fifo.rs2
-rw-r--r--src/exceptions.rs2
-rw-r--r--src/execload.rs2
-rw-r--r--src/gdb.rs2
-rw-r--r--src/instructions.rs2
-rw-r--r--src/instructions/macros.rs2
-rw-r--r--src/instructions/rva.rs2
-rw-r--r--src/instructions/rvi.rs2
-rw-r--r--src/instructions/rvi/mem.rs2
-rw-r--r--src/instructions/rvm.rs2
-rw-r--r--src/main.rs2
-rw-r--r--src/mem.rs2
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};
diff --git a/src/gdb.rs b/src/gdb.rs
index 0361c48..ea0f327 100644
--- a/src/gdb.rs
+++ b/src/gdb.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::{
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};
diff --git a/src/mem.rs b/src/mem.rs
index c5e93f8..2663291 100644
--- a/src/mem.rs
+++ b/src/mem.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::sync::{