diff options
Diffstat (limited to 'lib/xixanta/src/mapping.rs')
| -rw-r--r-- | lib/xixanta/src/mapping.rs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/xixanta/src/mapping.rs b/lib/xixanta/src/mapping.rs index bd2fc2c..657a94b 100644 --- a/lib/xixanta/src/mapping.rs +++ b/lib/xixanta/src/mapping.rs @@ -43,6 +43,48 @@ lazy_static! { bundles: vec![], } ]; + pub static ref NROM65: Vec<Segment> = vec![ + Segment { + name: String::from("HEADER"), + start: 0x0000, + size: 0x0010, + offset: 0, + fill: Some(0x00), + bundles: vec![], + }, + Segment { + name: String::from("VECTORS"), + start: 0xFFFA, + size: 0x0006, + offset: 0, + fill: Some(0x00), + bundles: vec![], + }, + Segment { + name: String::from("STARTUP"), + start: 0x8000, + size: 0x7FFA, + offset: 0, + fill: Some(0x00), + bundles: vec![], + }, + Segment { + name: String::from("CODE"), + start: 0x8000, + size: 0x7FFA, + offset: 0, + fill: Some(0x00), + bundles: vec![], + }, + Segment { + name: String::from("CHARS"), + start: 0x0000, + size: 0x2000, + offset: 0, + fill: Some(0x00), + bundles: vec![], + } + ]; } #[derive(Debug, Clone, Eq, Ord, PartialEq, PartialOrd)] |
