7 lines
103 B
C
7 lines
103 B
C
#include <stdint.h>
|
|
|
|
struct pvs_instruction {
|
|
uint32_t op_dst_operand;
|
|
uint32_t src_operand[0];
|
|
};
|