summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/main.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 003d198..4d64f3c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,8 +1,11 @@
+// SPDX-License-Identifier: AGPL-3.0-or-later
+
 //! 6502 Emulator written in Rust. Based off of information from Dave's playlist
-//! <https://www.youtube.com/playlist?list=PLLwK93hM93Z13TRzPx9JqTIn33feefl37> using the now defunct
-//! obelisk 6502 documentation.
+//! <https://www.youtube.com/playlist?list=PLLwK93hM93Z13TRzPx9JqTIn33feefl37>
+//! using the now defunct obelisk 6502 documentation.
 //!
-//! Many comments are sourced from the Obelisk 6502 documentation <https://web.archive.org/web/20210501031403/http://www.obelisk.me.uk/index.html>
+//! Many comments are sourced from the Obelisk 6502 documentation
+//! <https://web.archive.org/web/20210501031403/http://www.obelisk.me.uk/index.html>
 
 mod cpu;
 mod instruction;