mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
12 lines
262 B
C
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); |