From 7d064dd11dbf90bda5e75e6b6806936a25753cce Mon Sep 17 00:00:00 2001 From: Toby Jaffey Date: Sun, 14 Dec 2025 18:36:18 +0000 Subject: [PATCH] Fix indent --- uvm32/uvm32.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/uvm32/uvm32.h b/uvm32/uvm32.h index edb96dc..7c4c14c 100644 --- a/uvm32/uvm32.h +++ b/uvm32/uvm32.h @@ -60,14 +60,14 @@ uint8_t _uvm32_load1(void *p, uint32_t off); int16_t _uvm32_load2s(void *p, uint32_t off); int8_t _uvm32_load1s(void *p, uint32_t off); #define MINIRV32_CUSTOM_MEMORY_BUS - #define MINIRV32_STORE4( ofs, val ) _uvm32_store4(image, ofs, val) - #define MINIRV32_STORE2( ofs, val ) _uvm32_store2(image, ofs, val) - #define MINIRV32_STORE1( ofs, val ) _uvm32_store1(image, ofs, val) - #define MINIRV32_LOAD4( ofs ) _uvm32_load4(image, ofs) - #define MINIRV32_LOAD2( ofs ) _uvm32_load2(image, ofs) - #define MINIRV32_LOAD1( ofs ) _uvm32_load1(image, ofs) - #define MINIRV32_LOAD2_SIGNED( ofs ) _uvm32_load2s(image, ofs) - #define MINIRV32_LOAD1_SIGNED( ofs ) _uvm32_load1s(image, ofs) +#define MINIRV32_STORE4( ofs, val ) _uvm32_store4(image, ofs, val) +#define MINIRV32_STORE2( ofs, val ) _uvm32_store2(image, ofs, val) +#define MINIRV32_STORE1( ofs, val ) _uvm32_store1(image, ofs, val) +#define MINIRV32_LOAD4( ofs ) _uvm32_load4(image, ofs) +#define MINIRV32_LOAD2( ofs ) _uvm32_load2(image, ofs) +#define MINIRV32_LOAD1( ofs ) _uvm32_load1(image, ofs) +#define MINIRV32_LOAD2_SIGNED( ofs ) _uvm32_load2s(image, ofs) +#define MINIRV32_LOAD1_SIGNED( ofs ) _uvm32_load1s(image, ofs) #ifndef MINIRV32_IMPLEMENTATION #define MINIRV32_STEPPROTO #endif