git.joshuawise.com
/
firearm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb0428b
)
Isuse.v: fix error in which cpsr was marked as defined when it needn't be
author
Joshua Wise
<joshua@rebirth.joshuawise.com>
Mon, 5 Jan 2009 07:42:25 +0000
(
02:42
-0500)
committer
Joshua Wise
<joshua@rebirth.joshuawise.com>
Mon, 5 Jan 2009 07:42:25 +0000
(
02:42
-0500)
Issue.v
patch
|
blob
|
blame
|
history
diff --git
a/Issue.v
b/Issue.v
index c3e579155bf09c9019a42d4df130291c9c2cf01e..3c8303a475c17e56134d0d206c55d9a8ea784ad7 100644
(file)
--- a/
Issue.v
+++ b/
Issue.v
@@
-167,7
+167,7
@@
module Issue(
(idxbit(rs) | idxbit(rm)) :
(idxbit(rm)))) |
(((alu_opc != `ALU_MOV) && (alu_opc != `ALU_MVN)) ? idxbit(rn) : 0);
- def_cpsr = insn[20] /* S */
| alu_is_logical(alu_opc)
;
+ def_cpsr = insn[20] /* S */;
def_regs = alu_flags_only(alu_opc) ? 0 : idxbit(rd);
end
`DECODE_LDRSTR_UNDEFINED: /* Undefined. I hate ARM */
This page took
0.02276 seconds
and
4
git commands to generate.