From 6aded1e9501634bfffc46f87f65fb605bc1c41d5 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 14 Jan 2025 23:34:03 +0100 Subject: Implement .asciiz control statement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/src/node.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/xixanta/src/node.rs') diff --git a/lib/xixanta/src/node.rs b/lib/xixanta/src/node.rs index 8fc3c73..04655cb 100644 --- a/lib/xixanta/src/node.rs +++ b/lib/xixanta/src/node.rs @@ -142,6 +142,7 @@ pub enum ControlType { EndRepeat, IncludeSource, ReserveMemory, + Asciiz, } impl fmt::Display for ControlType { @@ -164,6 +165,7 @@ impl fmt::Display for ControlType { ControlType::EndRepeat => write!(f, ".endrepeat"), ControlType::IncludeSource => write!(f, ".include"), ControlType::ReserveMemory => write!(f, ".res"), + ControlType::Asciiz => write!(f, ".asciiz"), } } } -- cgit v1.2.3