blob: f9d85ffdc2f783d2c0030ea32c2a89b51c2838b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// file : arch/null/arch_inst.h
// project : Salis-VM
// author : Paul Oliver <contact@pauloliver.dev>
#pragma once
// index:
// [section] macros
// [section] definitions
// ----------------------------------------------------------------------------
// [section] macros
// ----------------------------------------------------------------------------
#define ARCH_INST_CAP 0x80
// ----------------------------------------------------------------------------
// [section] definitions
// ----------------------------------------------------------------------------
int arch_inst_cap(void);
wchar_t arch_inst_symbol(uint8_t inst);
const char *arch_inst_mnemonic(uint8_t inst);
|