mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2024-12-01 13:24:20 +01:00
15 lines
210 B
C
15 lines
210 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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|