blob: d06c9c800fd92e04906906a6b1acd4342961fa82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// file : core/null/arch_inst.h
// project : Salis-VM
// author : Paul Oliver <contact@pauloliver.dev>
#pragma once
#define ARCH_INST_COUNT 0x80
#define ARCH_INST_MASK 0x7f
wchar_t arch_inst_symbol(uint8_t inst);
const char *arch_inst_mnemonic(uint8_t inst);
|