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 /lib/xixanta/src/errors.rs | |
| 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 'lib/xixanta/src/errors.rs')
| -rw-r--r-- | lib/xixanta/src/errors.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/xixanta/src/errors.rs b/lib/xixanta/src/errors.rs index 48f7286..d9a12cd 100644 --- a/lib/xixanta/src/errors.rs +++ b/lib/xixanta/src/errors.rs @@ -1,5 +1,6 @@ use std::fmt; +// TODO: global error #[derive(Debug, Clone, PartialEq)] pub struct ParseError { pub line: usize, |
