mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-23 17:30:42 +00:00
7e303a1151
At this stage, I doubt emit.c will need to know the details of the target (v6, v6p, ruamoko) since the instruction formats are identical, just different meanings for the opcode itself.
44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
/*
|
|
opcodes.h
|
|
|
|
opcode searching
|
|
|
|
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
Date: 2002/06/04
|
|
|
|
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 2
|
|
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, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
#ifndef __opcodes_h
|
|
#define __opcodes_h
|
|
|
|
#include "QF/pr_comp.h"
|
|
|
|
typedef struct instruction_s instruction_t;
|
|
|
|
struct operand_s;
|
|
pr_ushort_t opcode_get (instruction_t *inst);
|
|
instruction_t *opcode_find (const char *name, struct operand_s *op_a,
|
|
struct operand_s *op_b, struct operand_s *op_c);
|
|
void opcode_init (void);
|
|
|
|
#endif//__opcodes_h
|