/* ======================================================================== (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 ======================================================================== */ enum register_mapping_8086 { Register_none, Register_a, Register_b, Register_c, Register_d, Register_sp, Register_bp, Register_si, Register_di, Register_es, Register_cs, Register_ss, Register_ds, Register_ip, Register_flags, Register_count, }; static instruction DecodeInstruction(instruction_table Table, segmented_access At);