diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-13 16:12:08 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-01-13 16:15:06 +0100 |
| commit | 5f48de69f46d4da27b22c47178b2e6216f7a7801 (patch) | |
| tree | 8d4411c63b714565eeae62df0ff8691cce38d899 /lib/xixanta/src/lib.rs | |
| parent | ab70669868a653534adb67700cacda2ffaeb46f0 (diff) | |
| download | tools.nes-5f48de69f46d4da27b22c47178b2e6216f7a7801.tar.gz tools.nes-5f48de69f46d4da27b22c47178b2e6216f7a7801.zip | |
Add support for cfg files
In order to make tools like `xa65` work seamlessly with existing
configurations, allow this format too instead of making developers
switch to a new file with TOML syntax.
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'lib/xixanta/src/lib.rs')
| -rw-r--r-- | lib/xixanta/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/xixanta/src/lib.rs b/lib/xixanta/src/lib.rs index ce9be6d..6f1fc86 100644 --- a/lib/xixanta/src/lib.rs +++ b/lib/xixanta/src/lib.rs @@ -77,6 +77,7 @@ pub mod object; pub mod opcodes; pub mod parser; +mod cfg; /// Mapping defines structures for laying out how the code will be assembled /// both on memory and on the ROM file itself. Notice that we take a different /// approach than 'cc65' because that compiler has to take into account a |
