mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 00:10:26 -06:00
10 lines
200 B
C++
10 lines
200 B
C++
#pragma once
|
|
|
|
#include <cpu/guest_code.h>
|
|
|
|
#define SWA__CONCAT2(x, y) x##y
|
|
#define SWA_CONCAT2(x, y) _CONCAT(x, y)
|
|
|
|
#define SWA_INSERT_PADDING(length) \
|
|
uint8_t SWA_CONCAT2(pad, __LINE__)[length]
|