summaryrefslogtreecommitdiff
path: root/src/libs/reference_decoder/sim86_instruction_table.cpp
diff options
context:
space:
mode:
authorRaymaekers Luca <luca@spacehb.net>2025-11-12 18:52:38 +0100
committerRaymaekers Luca <luca@spacehb.net>2025-11-12 18:52:38 +0100
commitd4f6774c172ac1e7c193fc4e89230c873d179c2b (patch)
tree049b855ac7b68482dc9e1e35b339f5b4d18d675b /src/libs/reference_decoder/sim86_instruction_table.cpp
parente20d69ffb1f5676bb7960ac4d71c1013e4582149 (diff)
checkpoint
Diffstat (limited to 'src/libs/reference_decoder/sim86_instruction_table.cpp')
-rw-r--r--src/libs/reference_decoder/sim86_instruction_table.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/libs/reference_decoder/sim86_instruction_table.cpp b/src/libs/reference_decoder/sim86_instruction_table.cpp
deleted file mode 100644
index be3ec82..0000000
--- a/src/libs/reference_decoder/sim86_instruction_table.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-/* ========================================================================
-
- (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;
-}