Release Notes
Release Notes
4c
Aug 12 2015
Copyright 1991-2015 Mentor Graphics Corporation
All rights reserved.
This document contains information that is proprietary to Mentor
Graphics
Corporation. The original recipient of this document may duplicate this
document in whole or in part for internal business purposes only,
provided
that this entire notice appears in all copies. In duplicating any part
of
this document the recipient agrees to make every reasonable effort to
prevent the unauthorized use and distribution of the proprietary
information.
TRADEMARKS: The trademarks, logos and service marks ("Marks") used
herein
are the property of Mentor Graphics Corporation or other third parties.
No one is permitted to use these Marks without the prior written
consent
of Mentor Graphics or the respective third-party owner. The use herein
of a third-party Mark is not an attempt to indicate Mentor Graphics as
a
source of a product, but is intended to indicate a product from, or
associated with, a particular third party. The following are trademarks
of
of Mentor Graphics Corporation: Questa, ModelSim, JobSpy, and Signal
Spy.
A current list of Mentor Graphics trademarks may be viewed at
www.mentor.com/terms_conditions/trademarks.cfm.
End-User License Agreement: You can print a copy of the End-User
License
Agreement from: www.mentor.com/terms_conditions/enduser.cfm.
_______________________________________________________________________
* [2]Key Information
* [3]Release Announcements in 10.4c
* [4]Base Product Specifications in 10.4c
* [5]Compatibility Issues with Release 10.4c
* [6]General Defects Repaired in 10.4c
* [7]User Interface Defects Repaired in 10.4c
* [8]SystemVerilog Defects Repaired in 10.4c
* [9]VHDL Defects Repaired in 10.4c
* [10]SystemC Defects Repaired in 10.4c
* [11]User Interface Enhancements in 10.4c
_______________________________________________________________________
Key Information
* The following lists the supported platforms:
+ win32aloem - Windows 7, Windows 8
+ linuxaloem - RedHat Enterprise Linux 5 and 6, SUSE Linux
Enterprise Server 10 and 11
_______________________________________________________________________
The "bp" command will also accept the common gdb syntax of
"file-name:line-number", for example:
bp dut.sv:57
* dvt30446 - Two enhancements have been added to the run & step
commands, reporting of the simulation time and delta when the run
operation completes, and reporting the run status when the run
operation completes. These reports are enabled by setting the
preference variable PrefMain(noRunTimeMsg) and
PrefMain(noRunStatusMsg) respectively to 0. Here is an example of
these reports:
VSIM 1> run 105
VSIM 2> set PrefMain(noRunTimeMsg) 0
# 0
VSIM 3> run 112
# Time: @217 ns 0
VSIM 4> set PrefMain(noRunStatusMsg) 0
# 0
VSIM 5> run 100
# Time: @317 ns 0
# Status: ready end
VSIM 6> set PrefMain(noRunTimeMsg) 1
# 1
VSIM 7> run 50
# Status: ready end
VSIM 8> set PrefMain(noRunStatusMsg) 1
# 1
VSIM 9> run 55
VSIM 10>