Deleted Added
sdiff udiff text old ( 6083:c669a6f8fa9e ) new ( 6084:cb751de62299 )
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

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

322{
323 rdip t7
324 limm t2, imm
325 ldst t1, seg, riprel, disp
326 sbb t1, t1, t2, flags=(OF,SF,ZF,AF,PF,CF)
327 st t1, seg, riprel, disp
328};
329
330def macroop SBB_M_R
331{
332 ldst t1, seg, sib, disp
333 sbb t1, t1, reg, flags=(OF,SF,ZF,AF,PF,CF)
334 st t1, seg, sib, disp
335};
336
337def macroop SBB_P_R
338{
339 rdip t7
340 ldst t1, seg, riprel, disp
341 sbb t1, t1, reg, flags=(OF,SF,ZF,AF,PF,CF)
342 st t1, seg, riprel, disp
343};
344
345def macroop NEG_R
346{
347 sub reg, t0, reg, flags=(CF,OF,SF,ZF,AF,PF)
348};
349
350def macroop NEG_M
351{
352 ldst t1, seg, sib, disp

--- 12 unchanged lines hidden ---