File: reg_map.h

package info (click to toggle)
skyeye 1.2.0rc8-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,688 kB
  • ctags: 11,403
  • sloc: ansic: 60,324; sh: 1,209; python: 707; makefile: 474; exp: 38
file content (16 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __REG_MAP_H__
#define __REG_MAP_H__

struct _reg_s {
	char * ir_regname;
	char * host_regname;
};
typedef struct _reg_s reg_t;

struct _target_reg_s {
	char * regname;
	char * regvalue; 
};
typedef struct _target_reg_s target_reg_t;

#endif