mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2024-12-02 14:24:14 +01:00
9596275498
data layout needs to be rethought to make sure it's optimal
16 lines
252 B
C
16 lines
252 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void disassemble_qpu_asm(uint64_t instruction);
|
|
void assemble_qpu_asm(char* str, uint64_t* instructions);
|
|
unsigned get_num_instructions(char* ptr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|