2002-06-04 21:23:39 +00:00
|
|
|
/*
|
|
|
|
opcodes.h
|
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
opcode searching
|
2002-06-04 21:23:39 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
|
2002-06-04 21:23:39 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
Date: 2002/06/04
|
2002-06-04 21:23:39 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-01-08 15:26:52 +00:00
|
|
|
#include "QF/progs/pr_comp.h"
|
2002-06-07 17:29:30 +00:00
|
|
|
|
2022-01-07 10:05:26 +00:00
|
|
|
typedef struct instruction_s instruction_t;
|
2021-12-31 10:16:02 +00:00
|
|
|
|
2022-01-07 10:05:26 +00:00
|
|
|
struct operand_s;
|
2022-01-08 03:14:27 +00:00
|
|
|
pr_ushort_t opcode_get (instruction_t *inst) __attribute__((pure));
|
2022-01-07 10:05:26 +00:00
|
|
|
instruction_t *opcode_find (const char *name, struct operand_s *op_a,
|
|
|
|
struct operand_s *op_b, struct operand_s *op_c);
|
2002-06-07 17:29:30 +00:00
|
|
|
void opcode_init (void);
|
2022-01-20 03:55:56 +00:00
|
|
|
void opcode_print_statement (pr_uint_t addr, dstatement_t *st);
|
2002-06-04 21:23:39 +00:00
|
|
|
|
|
|
|
#endif//__opcodes_h
|