StrikeBox/modules/core/include/vixen/hw/basic/mcpx.h
StrikerX3 3ef26120ee Replace CPU modules with virt86
Restructure CMake projects
2019-02-20 23:38:36 -03:00

25 lines
313 B
C++

#pragma once
#include <cstdint>
#include "../defs.h"
namespace vixen {
// MCPX ROM versions.
typedef enum {
MCPX_1_0,
MCPX_1_1,
} MCPXROMVersion;
// MCPX revisions.
typedef enum {
MCPX_X2,
MCPX_X3,
} MCPXRevision;
MCPXRevision MCPXRevisionFromHardwareModel(HardwareModel hardwareModel);
}