blob: 158bdddcb45dc0dbc26c8b65ed015c96a52a6aa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $OpenBSD: hppa.h,v 1.1 2001/03/22 05:18:30 mickey Exp $ */
/*
* offset (in bytes) of the code from the entry address of a routine.
* (see asgnsamples for use and explanation.)
*/
#define OFFSET_OF_CODE 0
#define UNITS_TO_CODE (OFFSET_OF_CODE / sizeof(UNIT))
enum opermodes { dummy };
typedef enum opermodes operandenum;
|