Downloads:
1,144,353
Downloads of v 2.16.01.20221231:
302,465
Last Update:
31 Dec 2022
Package Maintainer(s):
Software Author(s):
- The NASM development team
Tags:
nasm assembler 80x86 x86-64 x86 compiler foss embeddedNetWide Assembler (install)
This is not the latest version of NetWide Assembler (install) available.
- 1
- 2
- 3
2.16.01.20221231 | Updated: 31 Dec 2022
Downloads:
1,144,353
Downloads of v 2.16.01.20221231:
302,465
Maintainer(s):
Software Author(s):
- The NASM development team
NetWide Assembler (install) 2.16.01.20221231
This is not the latest version of NetWide Assembler (install) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by The NASM development team. The inclusion of The NASM development team trademark(s), if any, upon this webpage is solely to identify The NASM development team goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install NetWide Assembler (install), run the following command from the command line or from PowerShell:
To upgrade NetWide Assembler (install), run the following command from the command line or from PowerShell:
To uninstall NetWide Assembler (install), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download nasm --internalize --version=2.16.01.20221231 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade nasm -y --source="'INTERNAL REPO URL'" --version="'2.16.01.20221231'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade nasm -y --source="'INTERNAL REPO URL'" --version="'2.16.01.20221231'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install nasm
win_chocolatey:
name: nasm
version: '2.16.01.20221231'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'nasm' do
action :install
source 'INTERNAL REPO URL'
version '2.16.01.20221231'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller nasm
{
Name = "nasm"
Version = "2.16.01.20221231"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'nasm':
ensure => '2.16.01.20221231',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 31 Dec 2022.
The Netwide Assembler, NASM, is an 80x86 and x86-64 assembler designed for portability and modularity. It supports a range of object file formats, including Linux and *BSD a.out, ELF, Mach-O, 16-bit and 32-bit .obj (OMF) format, COFF (including its Win32 and Win64 variants.) It can also output plain binary files, Intel hex and Motorola S-Record formats. Its syntax is designed to be simple and easy to understand, similar to the syntax in the Intel Software Developer Manual with minimal complexity. It supports all currently known x86 architectural extensions, and has strong support for macros.
$ErrorActionPreference = 'Stop'
# The NASM uninstaller isn't silent and hangs. No registry entries,
# so just remove all the files.
$StartMenu = Join-Path $env:ProgramData '\Microsoft\Windows\Start Menu'
$SMfolder = Get-ChildItem $StartMenu -Filter "Netwide Assembler*" -Recurse -Directory
if ($SMfolder) {
$null = Remove-Item $SMfolder.FullName -Recurse -Force
Write-Verbose "Removed NASM icons in Start Menu."
}
if (Test-Path 'C:\Users\Public\Desktop\nasm.lnk') {
$null = Remove-Item 'C:\Users\Public\Desktop\nasm.lnk' -Force
Write-Verbose "Removed NASM icon on public desktop."
}
if (Test-Path "$env:ProgramFiles\NASM") {
$null = Remove-Item "$env:ProgramFiles\NASM" -Recurse -Force
Write-Verbose "Removed NASM folder from Program Files."
}
From: https://github.com/netwide-assembler/nasm/blob/master/LICENSE
NASM is now licensed under the 2-clause BSD license, also known as the
simplified BSD license.
Copyright 1996-2010 the NASM Authors - All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following
conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
md5: 48FC6FB4D1D130C0658A0F85A51D43EC | sha1: 8F9EC140E84C8DA296A736B02BCD959F3969F1F4 | sha256: 08DBA33CE8425B92461EF4161F24379BD55B08B18E11CF2B75EBB2422F4B0248 | sha512: 713CAF6CEEA41A0A6DEC8F67D028FF94D0ED85AEB8484AA716BBA8361D48547387CC5555DAC5372A722335E46A432824A1C191A372886AE600E6C81A3B51064D
md5: 4BAF4986C5D30288BE9E1D362B0E9074 | sha1: ED65627D5D49FC3D62F77F56299AB6F8662B8ABB | sha256: 243F6D98F683ADDE87027158E925DC57D664D9B926445E46AA3C2FB45017227F | sha512: 98994A120B14DD9F1CB9597281BE71D3F3F168D1B79A8AA1E9BAF670CEB4A82EEB8CF9345ABDD92E6AFA2CE558BB4C27DA574488548D1E3C3C39828EE0489E10
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The current and past binaries of NASM are available from the main site:
https://www.nasm.us/
and clicking on the version number for "Stable" under "Latest version".
Specifically:
https://www.nasm.us/pub/nasm/releasebuilds/<version>
Once there, the "win32" and "win64" folders contain the binaries used
in this package.
Direct Download:
Version : 2.16.01
x86 URL : http://www.nasm.us/pub/nasm/releasebuilds/2.16.01//win32/nasm-2.16.01-installer-x86.exe
x86 CheckSum : 243F6D98F683ADDE87027158E925DC57D664D9B926445E46AA3C2FB45017227F
x64 URL : http://www.nasm.us/pub/nasm/releasebuilds/2.16.01//win64/nasm-2.16.01-installer-x64.exe
x64 CheckSum : 08DBA33CE8425B92461EF4161F24379BD55B08B18E11CF2B75EBB2422F4B0248
Log in or click on link to see number of positives.
- nasm-2.16.01-installer-x64.exe (08dba33ce842) - ## / 71
- nasm-2.16.01-installer-x86.exe (243f6d98f683) - ## / 71
- nasm.2.16.01.20221231.nupkg (324be2ee1bc9) - ## / 67
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
NetWide Assembler (install) 2.16.3 | 155474 | Tuesday, April 23, 2024 | Approved | |
NetWide Assembler (install) 2.16.2 | 9867 | Wednesday, April 10, 2024 | Approved | |
NetWide Assembler (install) 2.16.01.20221231 | 302465 | Saturday, December 31, 2022 | Approved | |
NetWide Assembler (install) 2.16.01 | 4436 | Friday, December 23, 2022 | Approved | |
NetWide Assembler (install) 2.15.05 | 178239 | Friday, November 5, 2021 | Approved | |
NetWide Assembler 2.14.02 | 467974 | Monday, June 17, 2019 | Approved | |
NetWide Assembler 2.14 | 13260 | Tuesday, November 13, 2018 | Approved | |
NetWide Assembler 2.13.03 | 4282 | Monday, March 5, 2018 | Approved | |
NetWide Assembler 2.13.02 | 2712 | Tuesday, December 5, 2017 | Approved | |
NetWide Assembler 2.13.01 | 1174 | Monday, July 17, 2017 | Approved | |
NetWide Assembler 2.12.02 | 2412 | Friday, August 12, 2016 | Approved | |
NetWide Assembler 2.12.01 | 577 | Wednesday, May 11, 2016 | Approved | |
NetWide Assembler 2.10.06 | 1481 | Thursday, December 6, 2012 | Approved |
Copyright © 1996-2020 The NASM development team
This package has no dependencies.
Ground Rules:
- This discussion is only about NetWide Assembler (install) and the NetWide Assembler (install) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or NetWide Assembler (install), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.