Skip to content

Commit

Permalink
Renamed to 'emulatorr' (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
jadenaccord committed Sep 24, 2023
1 parent e01c1d4 commit 727a35c
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "mos-6502-emulator"
name = "emulatorr"
version = "0.1.0-alpha"
edition = "2021"
authors = ["Jaden Accord <dev@jadenaccord.com>"]
Expand Down
2 changes: 1 addition & 1 deletion tests/addressing.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![allow(clippy::disallowed_names)]

use mos_6502_emulator::core::{
use emulatorr::core::{
cpu::{
CPU,
AddressingMode,
Expand Down
2 changes: 1 addition & 1 deletion tests/instructions.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use mos_6502_emulator::core::{
use emulatorr::core::{
cpu::{
CPU,
Flags,
Expand Down
2 changes: 1 addition & 1 deletion tests/io.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::path::PathBuf;

use mos_6502_emulator::io;
use emulatorr::io;

#[test]
fn read_existing() {
Expand Down
2 changes: 1 addition & 1 deletion tests/programs.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// use mos_6502_emulator::{
// use emulatorr::{
// cpu::{
// CPU,
// AddressingMode,
Expand Down

0 comments on commit 727a35c

Please sign in to comment.