diff options
| author | bd <bdunahu@operationnull.com> | 2025-03-11 17:24:37 -0400 | 
|---|---|---|
| committer | bd <bdunahu@operationnull.com> | 2025-03-11 17:24:37 -0400 | 
| commit | d743af4b5df01e3a75725912bee1d00b8fe573dd (patch) | |
| tree | 4de529c2e8a762503b99db77efc73cdc98104bb0 /src/utils/utils.cc | |
| parent | 97173af3651138db50cc42df25b474af2b6ece43 (diff) | |
| parent | 92e8c2583695a3bf652e0e8dedb79e7a99922f5f (diff) | |
Merge remote-tracking branch 'origin/master' into bdunahu
Diffstat (limited to 'src/utils/utils.cc')
| -rw-r--r-- | src/utils/utils.cc | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/src/utils/utils.cc b/src/utils/utils.cc index 3a99cec..b5a4d55 100644 --- a/src/utils/utils.cc +++ b/src/utils/utils.cc @@ -28,3 +28,10 @@ const std::string string_format(const char *const zcFormat, ...)  	va_end(vaArgs);  	return std::string(zc.data(), iLen);  } + +int wrap_address(int address) { +	if (address < 0){ +		return ((address % MEM_SIZE) + MEM_SIZE) % MEM_SIZE; +	} +	return address % MEM_SIZE; +} | 
