Deleted Added
sdiff udiff text old ( 5119:a4469f2919f3 ) new ( 6081:e5da3985fa99 )
full compact
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

--- 68 unchanged lines hidden (view full) ---

77{
78 rdip t7
79 limm t2, imm
80 ldst t1, seg, riprel, disp
81 add t1, t1, t2, flags=(OF,SF,ZF,AF,PF,CF)
82 st t1, seg, riprel, disp
83};
84
85def macroop ADD_M_R
86{
87 ldst t1, seg, sib, disp
88 add t1, t1, reg, flags=(OF,SF,ZF,AF,PF,CF)
89 st t1, seg, sib, disp
90};
91
92def macroop ADD_P_R
93{
94 rdip t7
95 ldst t1, seg, riprel, disp
96 add t1, t1, reg, flags=(OF,SF,ZF,AF,PF,CF)
97 st t1, seg, riprel, disp
98};
99
100def macroop ADD_R_M
101{
102 ld t1, seg, sib, disp
103 add reg, reg, t1, flags=(OF,SF,ZF,AF,PF,CF)
104};
105
106def macroop ADD_R_P
107{

--- 193 unchanged lines hidden ---