/* config.v - Configuration values for the 9086 CPU and the system around it This file is part of the 9086 project. Copyright (c) 2023 Efthymios Kritikos This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /** Runtime Verbosity **/ //`define DEBUG_REG_WRITES //`define DEBUG_PC_ADDRESS //`define DEBUG_DATA_READ_WRITES /** Optimisations **/ /* Enables the ability to check if an instruction in the input * buffer is completed and mark it ready instead of always waiting * for the maximum instruction size worth of bytes */ `define EARLY_VALID_INSTRUCTION /* Internal */ `ifdef EARLY_VALID_INSTRUCTION `define EARLY_VALID_INSTRUCTION_ 1 `else `define EARLY_VALID_INSTRUCTION_ 0 `endif