Fix indent

This commit is contained in:
Toby Jaffey 2025-12-14 18:36:18 +00:00
parent e5fd17aff6
commit 7d064dd11d

View file

@ -60,14 +60,14 @@ uint8_t _uvm32_load1(void *p, uint32_t off);
int16_t _uvm32_load2s(void *p, uint32_t off); int16_t _uvm32_load2s(void *p, uint32_t off);
int8_t _uvm32_load1s(void *p, uint32_t off); int8_t _uvm32_load1s(void *p, uint32_t off);
#define MINIRV32_CUSTOM_MEMORY_BUS #define MINIRV32_CUSTOM_MEMORY_BUS
#define MINIRV32_STORE4( ofs, val ) _uvm32_store4(image, ofs, val) #define MINIRV32_STORE4( ofs, val ) _uvm32_store4(image, ofs, val)
#define MINIRV32_STORE2( ofs, val ) _uvm32_store2(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_STORE1( ofs, val ) _uvm32_store1(image, ofs, val)
#define MINIRV32_LOAD4( ofs ) _uvm32_load4(image, ofs) #define MINIRV32_LOAD4( ofs ) _uvm32_load4(image, ofs)
#define MINIRV32_LOAD2( ofs ) _uvm32_load2(image, ofs) #define MINIRV32_LOAD2( ofs ) _uvm32_load2(image, ofs)
#define MINIRV32_LOAD1( ofs ) _uvm32_load1(image, ofs) #define MINIRV32_LOAD1( ofs ) _uvm32_load1(image, ofs)
#define MINIRV32_LOAD2_SIGNED( ofs ) _uvm32_load2s(image, ofs) #define MINIRV32_LOAD2_SIGNED( ofs ) _uvm32_load2s(image, ofs)
#define MINIRV32_LOAD1_SIGNED( ofs ) _uvm32_load1s(image, ofs) #define MINIRV32_LOAD1_SIGNED( ofs ) _uvm32_load1s(image, ofs)
#ifndef MINIRV32_IMPLEMENTATION #ifndef MINIRV32_IMPLEMENTATION
#define MINIRV32_STEPPROTO #define MINIRV32_STEPPROTO
#endif #endif