diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-07-15 08:55:57 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-12-12 07:31:52 +0100 |
| commit | c6c9aa4e5f3e5a01fcb9ccabf6dbd2f6da277650 (patch) | |
| tree | 55f205062606664d3f17ff762e475a7895ceefee /crates/ncount | |
| parent | 587dd5bb80364688419bb43aba4afc044ac0ef48 (diff) | |
| download | tools.nes-c6c9aa4e5f3e5a01fcb9ccabf6dbd2f6da277650.tar.gz tools.nes-c6c9aa4e5f3e5a01fcb9ccabf6dbd2f6da277650.zip | |
Add the notion of mapping
Mappings and segments are fundamental blocks on how code is distributed
both on the actual ROM File and in the memory layout.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'crates/ncount')
| -rw-r--r-- | crates/ncount/Cargo.toml | 8 | ||||
| -rw-r--r-- | crates/ncount/TODO | 0 | ||||
| -rw-r--r-- | crates/ncount/src/main.rs | 3 |
3 files changed, 11 insertions, 0 deletions
diff --git a/crates/ncount/Cargo.toml b/crates/ncount/Cargo.toml new file mode 100644 index 0000000..1bb3f7e --- /dev/null +++ b/crates/ncount/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "ncount" +version = "0.0.1" +authors = ["Miquel Sabaté Solà <mikisabate@gmail.com>"] +edition = "2021" + +[dependencies] +xixanta.workspace = true diff --git a/crates/ncount/TODO b/crates/ncount/TODO deleted file mode 100644 index e69de29..0000000 --- a/crates/ncount/TODO +++ /dev/null diff --git a/crates/ncount/src/main.rs b/crates/ncount/src/main.rs new file mode 100644 index 0000000..b70f821 --- /dev/null +++ b/crates/ncount/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("TBD"); +} |
