Path: blob/a-new-beginning/Cherry/Core/include/opcode_names.h
2 views
/*1* Gearcoleco - ColecoVision Emulator2* Copyright (C) 2021 Ignacio Sanchez34* This program is free software: you can redistribute it and/or modify5* it under the terms of the GNU General Public License as published by6* the Free Software Foundation, either version 3 of the License, or7* any later version.89* This program is distributed in the hope that it will be useful,10* but WITHOUT ANY WARRANTY; without even the implied warranty of11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12* GNU General Public License for more details.1314* You should have received a copy of the GNU General Public License15* along with this program. If not, see http://www.gnu.org/licenses/16*17*/1819#ifndef OPCODE_NAMES_H20#define OPCODE_NAMES_H2122struct stOPCodeInfo23{24const char* name;25int size;26int type;27};2829#include "opcodexx_names.h"30#include "opcodecb_names.h"31#include "opcodeed_names.h"32#include "opcodedd_names.h"33#include "opcodefd_names.h"34#include "opcodeddcb_names.h"35#include "opcodefdcb_names.h"3637#endif /* OPCODE_NAMES_H */38394041