// table.h // Defines the instruction table, and the functions to access it. #pragma once #include"stdint.h" #include"stdlib.h" #include"string.h" #include"addressing.h" // Runs the next instruction through the CPU void CallInstructionTable(); // Sets an individual portion of an instruction set void SetInstructionTable(int index, void* function, Addressing addressing, int cycles); // Initializes instruction table in memory. void InitInstructionTable();