From 856fd58549e5bf50e800a665f9deb27d967df2fb Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Fri, 24 Oct 2025 12:58:52 +0200 Subject: checkpoint --- .../reference_decoder/sim86_instruction_table.cpp | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/libs/reference_decoder/sim86_instruction_table.cpp (limited to 'src/libs/reference_decoder/sim86_instruction_table.cpp') diff --git a/src/libs/reference_decoder/sim86_instruction_table.cpp b/src/libs/reference_decoder/sim86_instruction_table.cpp new file mode 100644 index 0000000..be3ec82 --- /dev/null +++ b/src/libs/reference_decoder/sim86_instruction_table.cpp @@ -0,0 +1,27 @@ +/* ======================================================================== + + (C) Copyright 2023 by Molly Rocket, Inc., All Rights Reserved. + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Please see https://computerenhance.com for more information + + ======================================================================== */ + +static instruction_encoding InstructionTable8086[] = +{ +#include "sim86_instruction_table.inl" +}; + +static instruction_table Get8086InstructionTable() +{ + instruction_table Result = {}; + + Result.EncodingCount = ArrayCount(InstructionTable8086); + Result.Encodings = InstructionTable8086; + Result.MaxInstructionByteCount = 15; // NOTE(casey): This is the "Intel-specified" maximum length of an instruction, including prefixes + + return Result; +} -- cgit v1.2.3-70-g09d2