cen64/rsp/opcodes.h
Derek "Turtle" Roe 8b89df2fdc See long description
Replaced all references to simulation with emulation
Updated copyright year
Updated .gitignore to reduce chances of random files being uploaded to
the repo
Added .gitattributes to normalize all text files, and to ignore binary
files (which includes the logo and the NEC PDF)
2015-07-01 18:44:21 -05:00

50 lines
1.3 KiB
C

//
// rsp/opcodes.h: RSP opcode types and info.
//
// CEN64: Cycle-Accurate Nintendo 64 Emulator.
// Copyright (C) 2015, Tyler J. Stachecki.
//
// This file is subject to the terms and conditions defined in
// 'LICENSE', which is part of this source code package.
//
#ifndef __rsp_opcodes_h__
#define __rsp_opcodes_h__
#include "common.h"
#include "rsp/rsp.h"
enum rsp_opcode_id {
#define X(op) RSP_OPCODE_##op,
#include "rsp/opcodes.md"
NUM_RSP_OPCODES
#undef X
};
enum rsp_vector_opcode_id {
#define X(op) RSP_OPCODE_##op,
#include "rsp/vector_opcodes.md"
NUM_RSP_VECTOR_OPCODES
#undef X
};
struct rsp;
typedef void (*rsp_function)(struct rsp *,
uint32_t, uint32_t, uint32_t);
typedef rsp_vect_t (*rsp_vector_function)(struct rsp *rsp, uint32_t iw,
rsp_vect_t vt_shuffle, rsp_vect_t vs, rsp_vect_t zero);
extern const rsp_function rsp_function_table[NUM_RSP_OPCODES];
extern const char *rsp_opcode_mnemonics[NUM_RSP_OPCODES];
extern const rsp_vector_function rsp_vector_function_table[NUM_RSP_VECTOR_OPCODES];
extern const char *rsp_vector_opcode_mnemonics[NUM_RSP_VECTOR_OPCODES];
void RSP_INVALID(struct rsp *,
uint32_t, uint32_t, uint32_t);
cen64_cold rsp_vect_t RSP_VINVALID(struct rsp *rsp, uint32_t iw,
rsp_vect_t vt_shuffle, rsp_vect_t vs, rsp_vect_t zero);
#endif