SME 0.4.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package SME --version 0.4.3
NuGet\Install-Package SME -Version 0.4.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SME" Version="0.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SME --version 0.4.3
#r "nuget: SME, 0.4.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SME as a Cake Addin
#addin nuget:?package=SME&version=0.4.3

// Install SME as a Cake Tool
#tool nuget:?package=SME&version=0.4.3

Synchronous Message Exchange simulation and component library

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on SME:

Package Downloads
SME.AST

Abstract syntax tree builder for SME networks

SME.Tracer

Tracing module for SME networks

SME.GraphViz

GraphViz renderer for Synchronous Message Exchange

SME.VHDL

VHDL transpiler for SME networks

SME.CPP

C++ transpiler for SME networks

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.5.0 1,715 2/17/2022
0.4.4 1,410 4/27/2021
0.4.3 1,434 2/18/2021
0.4.2 1,622 9/16/2020
0.4.1-beta 969 6/26/2019
0.4.0-beta 1,103 2/19/2019
0.3.3-beta 1,390 3/22/2018
0.3.2 1,903 2/11/2018
0.3.1 1,854 12/11/2017
0.3.0 986 12/11/2017
0.1.0 1,525 5/3/2016

New in version 0.4.3 since 0.4.2
***********
* Changes *
***********
- Added the option to not render the buses, when generating the dot graph. This
allows for a much cleaner graph.
- Inferred true dual port memory are now more portable. The old definition
produced inconsistent behaviour, depending on which VHDL simulator was being
used.
- Moved function definitions in VHDL into the process definition. This allows
the functions to access variables and buses, which are local to the process.
*********
* Fixes *
*********
- Fixed error when initializing multidimensional arrays.
- Fixed triggering of unclocked processes. Before, clocked processes wouldn't
properly set the signal triggering unclocked processes.
- Fixed Windows line endings not being stripped in csv_util.vhdl.
- Fixed wrong name generation, when the first instance of a process came from
a different namespace. E.g. when the first process was a
SME.Components.TrueDualPortRAM, all names would start with SME_Components
instead of the proper namespace of the process.