mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
Allow Alpha target to use supervisor and executive mode micro-ops.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3389 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
e63ecc6f68
commit
bb6f6792bf
1 changed files with 6 additions and 6 deletions
|
@ -190,16 +190,16 @@ static GenOpFunc *gen_op_st##width[] = { \
|
|||
#define OP_LD_TABLE(width) \
|
||||
static GenOpFunc *gen_op_ld##width[] = { \
|
||||
&gen_op_ld##width##_kernel, \
|
||||
&gen_op_ld##width##_user, /* executive */ \
|
||||
&gen_op_ld##width##_data, /* supervisor */ \
|
||||
&gen_op_ld##width##_data, /* user */ \
|
||||
&gen_op_ld##width##_executive, \
|
||||
&gen_op_ld##width##_supervisor, \
|
||||
&gen_op_ld##width##_user, \
|
||||
}
|
||||
#define OP_ST_TABLE(width) \
|
||||
static GenOpFunc *gen_op_st##width[] = { \
|
||||
&gen_op_st##width##_kernel, \
|
||||
&gen_op_st##width##_user, /* executive */ \
|
||||
&gen_op_st##width##_data, /* supervisor */ \
|
||||
&gen_op_st##width##_data, /* user */ \
|
||||
&gen_op_st##width##_executive, \
|
||||
&gen_op_st##width##_supervisor, \
|
||||
&gen_op_st##width##_user, \
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue