1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#ifndef ULM_INSTRASM_H
#define ULM_INSTRASM_H

#include <stddef.h>

#ifdef __cplusplus
extern "C" {
#endif // __cplusplus

void ulm_asm(uint32_t instr, char *s, size_t len);

#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus

#endif // ULM_INSTRASM_H