diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-10-04 23:25:44 +1300 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-10-04 23:25:44 +1300 |
| commit | 1f82a90833990db8efe6111f89a9126a2fde74c5 (patch) | |
| tree | ba7783a34a51fa710e332b00f824cef93abc2436 /src/main.rs | |
| parent | d58a4d4ec245ea336b0e8b93e5ae3907b39395b4 (diff) | |
feat: refactor tooling
Diffstat (limited to '')
| -rw-r--r-- | src/main.rs | 9 |
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; |