Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
folium-app
GitHub Repository: folium-app/Folium
Path: blob/a-new-beginning/Cherry/Core/include/opcode_names.h
2 views
1
/*
2
* Gearcoleco - ColecoVision Emulator
3
* Copyright (C) 2021 Ignacio Sanchez
4
5
* This program is free software: you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License as published by
7
* the Free Software Foundation, either version 3 of the License, or
8
* any later version.
9
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
15
* You should have received a copy of the GNU General Public License
16
* along with this program. If not, see http://www.gnu.org/licenses/
17
*
18
*/
19
20
#ifndef OPCODE_NAMES_H
21
#define OPCODE_NAMES_H
22
23
struct stOPCodeInfo
24
{
25
const char* name;
26
int size;
27
int type;
28
};
29
30
#include "opcodexx_names.h"
31
#include "opcodecb_names.h"
32
#include "opcodeed_names.h"
33
#include "opcodedd_names.h"
34
#include "opcodefd_names.h"
35
#include "opcodeddcb_names.h"
36
#include "opcodefdcb_names.h"
37
38
#endif /* OPCODE_NAMES_H */
39
40
41