From 376dcb684ce779a7051bbc9a95359114e94cae5e Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 17 Jul 2024 15:09:36 +0200 Subject: Add support for procedures MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Procedures are marked with the '.proc' control statement and work both as a scoping mechanism and as a label that can be referenced. Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/src/instruction.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/xixanta/src/instruction.rs') diff --git a/lib/xixanta/src/instruction.rs b/lib/xixanta/src/instruction.rs index c635644..2d6c044 100644 --- a/lib/xixanta/src/instruction.rs +++ b/lib/xixanta/src/instruction.rs @@ -237,6 +237,7 @@ pub struct Literal { pub identifier: PString, pub bytes: [u8; 2], pub size: u8, + pub resolved: bool, } impl Encodable for Literal { -- cgit v1.2.3