mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
Fix indent
This commit is contained in:
parent
e5fd17aff6
commit
7d064dd11d
1 changed files with 8 additions and 8 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue