summaryrefslogtreecommitdiff
path: root/src/arch/power/isa/operands.isa
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/power/isa/operands.isa')
-rw-r--r--src/arch/power/isa/operands.isa20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/arch/power/isa/operands.isa b/src/arch/power/isa/operands.isa
index 8e13a13d7..fa481825f 100644
--- a/src/arch/power/isa/operands.isa
+++ b/src/arch/power/isa/operands.isa
@@ -29,16 +29,16 @@
// Authors: Timothy M. Jones
def operand_types {{
- 'sb' : ('signed int', 8),
- 'ub' : ('unsigned int', 8),
- 'sh' : ('signed int', 16),
- 'uh' : ('unsigned int', 16),
- 'sw' : ('signed int', 32),
- 'uw' : ('unsigned int', 32),
- 'sq' : ('signed int', 64),
- 'uq' : ('unsigned int', 64),
- 'sf' : ('float', 32),
- 'df' : ('float', 64)
+ 'sb' : 'int8_t',
+ 'ub' : 'uint8_t',
+ 'sh' : 'int16_t',
+ 'uh' : 'uint16_t',
+ 'sw' : 'int32_t',
+ 'uw' : 'uint32_t',
+ 'sq' : 'int64_t',
+ 'uq' : 'uint64_t',
+ 'sf' : 'float',
+ 'df' : 'double'
}};
def operands {{