Files
Momentum-Firmware/applications/external/flizzer_tracker/view/opcode_description.h
2023-06-17 22:12:41 +01:00

12 lines
262 B
C

#pragma once
#include "../tracker_engine/tracker_engine_defs.h"
#include <stdio.h>
typedef struct {
uint16_t opcode;
uint16_t mask;
char *name, *shortname;
} OpcodeDescription;
char* get_opcode_description(uint16_t opcode, bool short_description);