Ensure cpsr.t reads back out properly

This commit is contained in:
Jeffrey Pfau 2013-04-18 00:19:41 -07:00
parent ed48ab1c64
commit 4f8c288f20
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ struct ARMCore;
union PSR {
struct {
enum PrivilegeMode priv : 5;
int t : 1;
enum ExecutionMode t : 1;
int f : 1;
int i : 1;
int : 20;