From 5f48de69f46d4da27b22c47178b2e6216f7a7801 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 13 Jan 2025 16:12:08 +0100 Subject: Add support for cfg files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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à --- lib/xixanta/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/xixanta/src/lib.rs') 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 -- cgit v1.2.3