summaryrefslogtreecommitdiff
path: root/src/code/reference_decoder/sim86_instruction_table.cpp
diff options
context:
space:
mode:
authorRaymaekers Luca <luca@spacehb.net>2025-08-23 16:22:13 +0200
committerRaymaekers Luca <luca@spacehb.net>2025-08-23 16:22:13 +0200
commitea20bd9b5bcff9db1d86d83188e1e899799f324b (patch)
tree615e2f00e385e93061524c9647b64010ba7df3dd /src/code/reference_decoder/sim86_instruction_table.cpp
checkpoint
Diffstat (limited to 'src/code/reference_decoder/sim86_instruction_table.cpp')
-rw-r--r--src/code/reference_decoder/sim86_instruction_table.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/code/reference_decoder/sim86_instruction_table.cpp b/src/code/reference_decoder/sim86_instruction_table.cpp
new file mode 100644
index 0000000..be3ec82
--- /dev/null
+++ b/src/code/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;
+}