diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-03-09 02:34:12 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-03-09 02:34:12 -0500 |
commit | 9e304ed3e6d96e2090981a8aa825dab5b662909a (patch) | |
tree | 9ac9e943ce0fcd20dbea9ca63fec0b183557e15b /arch/mips | |
parent | 226d49ef695dd3455785227a2047914d1a397cf0 (diff) | |
download | gem5-9e304ed3e6d96e2090981a8aa825dab5b662909a.tar.xz |
minor comments to decoder.isa
arch/mips/isa/decoder.isa:
comments
--HG--
extra : convert_revision : 8e4fdf36d7f7365cda062bc169a313bf860a4fe5
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/isa/decoder.isa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/isa/decoder.isa b/arch/mips/isa/decoder.isa index 7d770c554..3f054f6a5 100644 --- a/arch/mips/isa/decoder.isa +++ b/arch/mips/isa/decoder.isa @@ -34,9 +34,9 @@ decode OPCODE_HI default Unknown::unknown() { 0x0: decode RT default BasicOp::sll({{ Rd = Rt.uw << SA; }}) { 0x0: decode RD{ 0x0: decode HINT { - 0x0:nop({{}}); - 0x1:ssnop({{}}); - 0x3:ehb({{}}); + 0x0:nop({{}}); //really sll r0,r0,0 + 0x1:ssnop({{}});//really sll r0,r0,1 + 0x3:ehb({{}}); //really sll r0,r0,3 } } } |