From da739a9370fd918c35620d6738208f585f41d623 Mon Sep 17 00:00:00 2001 From: anon Date: Tue, 9 Jul 2024 15:13:42 +0200 Subject: [PATCH] applied placeholders --- source/eaxhla.l | 2 ++ source/eaxhla.y | 2 ++ 2 files changed, 4 insertions(+) diff --git a/source/eaxhla.l b/source/eaxhla.l index 1d6a8e5..b89cc69 100644 --- a/source/eaxhla.l +++ b/source/eaxhla.l @@ -124,6 +124,8 @@ add { return IADD; } syscall { return ISYSCALL; } mov { return IMOV; } xor { return IXOR; } + /* #placeholder COLLAPSED + */ /* --- Instrunctions end here --- */ { diff --git a/source/eaxhla.y b/source/eaxhla.y index 64acffd..cc106c2 100644 --- a/source/eaxhla.y +++ b/source/eaxhla.y @@ -85,6 +85,7 @@ %token ISYSCALL %token IMOV %token IXOR +// #placeholder COLLAPSED // Instruction-likes %token FASTCALL @@ -226,6 +227,7 @@ instruction: INOP { ; } | IMOV memory immediate | IXOR register register | IXOR register memory + // #placeholder COLLAPSED ; repeat: REPEAT code END_REPEAT