From a179997a4ac335368416c32a43b0e3917be358d5 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Thu, 2 Oct 2025 19:27:03 -0400 Subject: np: piir: Annotate IR bytes Signed-off-by: Ian Moffett --- src/sys/include/np/piir.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sys/include/np/piir.h b/src/sys/include/np/piir.h index 8277c1f..d108776 100644 --- a/src/sys/include/np/piir.h +++ b/src/sys/include/np/piir.h @@ -50,11 +50,11 @@ typedef int8_t md_byte_t; #define PIIR_STACK_SIZE 4096 /* PIIR opcodes */ -#define PIIR_NOP 0x00 -#define PIIR_LOAD_R8 0x01 -#define PIIR_LOAD_R16 0x02 -#define PIIR_LOAD_R32 0x03 -#define PIIR_LOAD_R64 0x04 +#define PIIR_NOP 0x00 /* Do nothing */ +#define PIIR_LOAD_R8 0x01 /* Load 8-bit register */ +#define PIIR_LOAD_R16 0x02 /* Load 16-bit register */ +#define PIIR_LOAD_R32 0x03 /* Load 32-bit register */ +#define PIIR_LOAD_R64 0x04 /* Load 64-bit register */ #define PIIR_RET_NIL 0x05 /* Return nothing */ /* -- cgit v1.2.3