1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2024-12-02 14:24:14 +01:00
rpi-vk-driver/QPUassembler/qpu_assembler.h
Unknown 9596275498 added some of the descriptor set functionality
data layout needs to be rethought to make sure it's optimal
2019-04-30 22:00:39 +01:00

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