Deleted Added
sdiff udiff text old ( 10760:8f5993cfa916 ) new ( 11159:9459593cb649 )
full compact
1// Copyright (c) 2007-2008 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

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

422 case 8:
423 FpData_df = *(double *)&Mem;
424 break;
425 default:
426 panic("Unhandled data size in LdFp87.\\n");
427 }
428 ''', big = False)
429
430 def defineMicroStoreOp(mnemonic, code, completeCode="", mem_flags="0"):
431 global header_output
432 global decoder_output
433 global exec_output
434 global microopClasses
435 Name = mnemonic
436 name = mnemonic.lower()
437

--- 99 unchanged lines hidden ---