Deleted Added
sdiff udiff text old ( 5119:a4469f2919f3 ) new ( 6082:5db340cc3c47 )
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

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

71{
72 limm t2, imm
73 rdip t7
74 ldst t1, seg, riprel, disp
75 or t1, t1, t2, flags=(OF,SF,ZF,PF,CF)
76 st t1, seg, riprel, disp
77};
78
79def macroop OR_M_R
80{
81 ldst t1, seg, sib, disp
82 or t1, t1, reg, flags=(OF,SF,ZF,PF,CF)
83 st t1, seg, sib, disp
84};
85
86def macroop OR_P_R
87{
88 rdip t7
89 ldst t1, seg, riprel, disp
90 or t1, t1, reg, flags=(OF,SF,ZF,PF,CF)
91 st t1, seg, riprel, disp
92};
93
94def macroop OR_R_M
95{
96 ld t1, seg, sib, disp
97 or reg, reg, t1, flags=(OF,SF,ZF,PF,CF)
98};
99
100def macroop OR_R_P
101{

--- 146 unchanged lines hidden ---