From 07b2410a8639f0dcf740732b0cab6a3835b2d372 Mon Sep 17 00:00:00 2001 From: Themis Demetriades Date: Mon, 3 Jun 2024 14:38:37 +0100 Subject: [PATCH] Added zero register specifier constant w/ S --- src/global.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/global.h b/src/global.h index 138e11a..d3d015c 100644 --- a/src/global.h +++ b/src/global.h @@ -11,6 +11,8 @@ // Number of General Purpose Registers. #define REGISTER_COUNT 31 +// Register identifier interpreted as the 'zero register' +#define ZERO_REGISTER 31 // Size of the memory in bytes. #define MEMORY_SIZE 2097152 // Length of the memory address in bits.