exchange.py (10043:301f2c0b3423) exchange.py (10474:799c8ee4ecba)
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

40{
41 movfp ufp1, sti
42 movfp sti, st(0)
43 movfp st(0), ufp1
44};
45
46def macroop FXCH_M
47{
1# Copyright (c) 2007 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

40{
41 movfp ufp1, sti
42 movfp sti, st(0)
43 movfp st(0), ufp1
44};
45
46def macroop FXCH_M
47{
48 fault "new UnimpInstFault"
48 fault "std::make_shared<UnimpInstFault>()"
49};
50
51def macroop FXCH_P
52{
49};
50
51def macroop FXCH_P
52{
53 fault "new UnimpInstFault"
53 fault "std::make_shared<UnimpInstFault>()"
54};
55'''
54};
55'''