Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,189

Downloads of v 2.17:

292

Last Update:

15 Sep 2020

Package Maintainer(s):

Software Author(s):

  • oliverschmidt

Tags:

cc65 compiler nes atari 2600 5200 nintendo apple commodore c64 64 128 c128 telestrat pet 6502 assembler geos 65c02

CC65 Compiler (Install)

This is not the latest version of CC65 Compiler (Install) available.

  • 1
  • 2
  • 3

2.17 | Updated: 15 Sep 2020

Downloads:

1,189

Downloads of v 2.17:

292

Maintainer(s):

Software Author(s):

  • oliverschmidt

CC65 Compiler (Install) 2.17

This is not the latest version of CC65 Compiler (Install) available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install CC65 Compiler (Install), run the following command from the command line or from PowerShell:

>

To upgrade CC65 Compiler (Install), run the following command from the command line or from PowerShell:

>

To uninstall CC65 Compiler (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade cc65-compiler -y --source="'INTERNAL REPO URL'" --version="'2.17'" [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 cc65-compiler -y --source="'INTERNAL REPO URL'" --version="'2.17'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install cc65-compiler
  win_chocolatey:
    name: cc65-compiler
    version: '2.17'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'cc65-compiler' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.17'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller cc65-compiler
{
    Name     = "cc65-compiler"
    Version  = "2.17"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'cc65-compiler':
  ensure   => '2.17',
  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.

Package Approved

This package was approved by moderator flcdrg on 16 Sep 2020.

Description

A compiler for 6502 C and Assembly, for various platforms such as NES, Atari, Commodore, and Apple II


tools\asminc\apple2.inc
 
tools\asminc\apple2.mac
 
tools\asminc\atari.inc
 
tools\asminc\atari.mac
 
tools\asminc\atari2600.inc
 
tools\asminc\atari2600_riot.inc
 
tools\asminc\atari2600_tia.inc
 
tools\asminc\atari5200.inc
 
tools\asminc\atari_antic.inc
 
tools\asminc\atari_gtia.inc
 
tools\asminc\atari_pokey.inc
 
tools\asminc\atmos.inc
 
tools\asminc\c128.inc
 
tools\asminc\c16.inc
 
tools\asminc\c64.inc
 
tools\asminc\cbm.mac
 
tools\asminc\cbm510.inc
 
tools\asminc\cbm610.inc
 
tools\asminc\cbm_filetype.inc
 
tools\asminc\cpu.mac
 
tools\asminc\creativision.inc
 
tools\asminc\ctype.inc
 
tools\asminc\em-error.inc
 
tools\asminc\em-kernel.inc
 
tools\asminc\errno.inc
 
tools\asminc\fcntl.inc
 
tools\asminc\gamate.inc
 
tools\asminc\generic.mac
 
tools\asminc\get_tv.inc
 
tools\asminc\joy-error.inc
 
tools\asminc\joy-kernel.inc
 
tools\asminc\longbranch.mac
 
tools\asminc\lynx.inc
 
tools\asminc\modload.inc
 
tools\asminc\module.mac
 
tools\asminc\mouse-kernel.inc
 
tools\asminc\nes.inc
 
tools\asminc\o65.inc
 
tools\asminc\opcodes.inc
 
tools\asminc\pce.inc
 
tools\asminc\pet.inc
 
tools\asminc\plus4.inc
 
tools\asminc\ser-error.inc
 
tools\asminc\ser-kernel.inc
 
tools\asminc\signal.inc
 
tools\asminc\smc.inc
 
tools\asminc\stdio.inc
 
tools\asminc\supervision.inc
 
tools\asminc\telestrat.inc
 
tools\asminc\tgi-error.inc
 
tools\asminc\tgi-kernel.inc
 
tools\asminc\tgi-vectorfont.inc
 
tools\asminc\time.inc
 
tools\asminc\utsname.inc
 
tools\asminc\vic20.inc
 
tools\asminc\zeropage.inc
 
tools\asminc\_file.inc
 
tools\asminc\_heap.inc
 
tools\bin\ar65.exe
md5: 5C369498CD694EEAAA8D74798939A3EF | sha1: BAD183649F36A605EA9955290DDABC52BB21F28D | sha256: E1A840CE23AD212398D1DDE9261D1F8C0149C20DA1A223E5D6190B0B8474B6FE | sha512: 13E862312D9F81E17C999C21AB89D9810B4D62ADA284DE1E80179E4CFE92D71285A198AA0F720F1D25A86BDBF91BCE83E1CE0B12904986810CC2EB369344AFFE
tools\bin\ca65.exe
md5: A5D8B0A213F093922639437F116A01BE | sha1: 8DD88981719A38099181C398DD8C6BF8E9248CB6 | sha256: A5042D9D4C95D1512A705B68861200EC5CE5E61C53AEB6AAD319DB5B12FF202F | sha512: F3C00AD35A6DC7EEAB4A9FAF0A7330913186F9A5BC3257BB57D70461FAD5FD3F10435B30AB0BC702444BCE6925370FEB10C84FA892BD288D7D645A6D7EE7CB87
tools\bin\cc65.exe
md5: B58C35C04C505D23F863B5093F5C8201 | sha1: 6B1AF348C0FD3C042EA60C2D9071F0EF38A1EE65 | sha256: AFED224D6F099C33022A5C2F4DDD5AD90BA199DF7E88F8EE48985EE92D87BF11 | sha512: 45D4FC0A0690392C2B75D09CB261F8ACD0E0923E3E0A290757352032E877E54EB6C74654A6E1563AD1DB32B1292CEB21D3737D07369D7B1C9ADE14C7648354B7
tools\bin\chrcvt65.exe
md5: 49A91C2F0E1AB9EE312643338ACE0E51 | sha1: 67AF8549E88D096BEB77CF5372A8EE4110289E2A | sha256: CB5E3941BA5670CD44E343CB2EBC2F764F83A812FA4993C46C0710EF74FA9894 | sha512: 6F956D1A5FCD84CE43C61CFF6FFA7B35A1884A2A751784639373EA5B0E445736A11C952253B8189B858D8EEB12C63CE4847F17E8C94304EB2E0587D7FE6D2D7F
tools\bin\cl65.exe
md5: 327911AFB48B0A53271647C6DC033FAF | sha1: ADDB062A222B9B7EABB9516D9A3A078C39F7BBEF | sha256: 9AE61893C8060AA3B02EE2FFF3FC8FBBBAC7ACBB9C2005EE5CEDB774BD9BA876 | sha512: 159C39E1B31D68FAF97BBB33B6A833AECB271274169AFDC2E8515D949E2491CAD2BDDC0B964BDDD3DA5384BCEDAC801FF05AE0B3D221360EA582233FBCAA9E89
tools\bin\co65.exe
md5: C830FA14B9781D3145DD1A58FE477D66 | sha1: 55BD8BA73DCD7ACDBD93E5965090D2088F77CBAE | sha256: D3C7CD13719F35D23AA2AA228BED25EFA63B02A973FC0654DEDBDC042BC5037D | sha512: E8AEA56B47FF59C06CD52DBFCFC9E555BFC439F17FB6E4CE18D0FEC385B9FFEBD369E46BFD0B9F0AEE9BF823FFEA4662F0CDF86F4EF025F8E9854B2832C66266
tools\bin\da65.exe
md5: D3FAD210DF2404A37E93BF159BA83EC2 | sha1: F79AA4B8EF46FAB050311CCBA2F169F91FB4C7B6 | sha256: DF33AA420720AF30E097341614C06A10A817A680FBCCE2E48D8D606289585384 | sha512: 54225C14D5AAA5CCEE8C63FAEF4DAB5DE351D641E8DEADFA9C49F76454956A1570B93246369A5B46D8557D059C2A2D2A0CCF4D03D548E664E1ED16576F0D2682
tools\bin\grc65.exe
md5: A33C37CF8EB8548AD77AF2A5706AE1E8 | sha1: EF87246F38828F3F6A895F985E9AD7D80C3DF53A | sha256: ED4E65C33683AC9D1D919383DF480D2C0B96B68A3FE5AF5EE6CC96FF903C566E | sha512: 482549F9C5FA97618AA621653FC74712842258291819BFCEB7DECC07F516BE89F72A7242678E9DEE344DB4370DF6C67C92C80C529B1FE57A1CA94DC8A6CE6364
tools\bin\ld65.exe
md5: 7A0EFBB16C3E8ED436626D25F2D83EAE | sha1: D9F8DCE178354A7E0F97475C7E7BE77AEA36347B | sha256: 371689B138FA45B27B56F186BBBE2A8206111B43D9993F24CFD7CE5FD7B136C6 | sha512: FC144C18EEC0FE71BDF6202CBA34339115AB667626A272227C60F8AF130C536F241F05B64821B3E01AB52AD1191C9E256C54887F940442B30DFC9FFAE93DC715
tools\bin\od65.exe
md5: 6B2226B268564752539D9340E2EC0E5B | sha1: EDBFCFFC2540CF0FC82F0ADAF4A450650FB65E82 | sha256: 3C14AFC54FA45F4AFFF000CA544BE72B1AA64B17DD12BCCA0B51197A86D581AF | sha512: D05C11AECC7DCFD8C7D4AEFF38B0D07C5DE45BA5923E130AE05EEA49B345E51C129DB85F7C5E5C43A09AEA1084FCF9C106103F92F7D426F46619840EEC91C10C
tools\bin\sim65.exe
md5: DE7993C90385FC52A080B25B8EB68E78 | sha1: 8B00AA661446AD68E896257C55020547BE36D970 | sha256: B1BCF94A34BE49F20A5F59F95D9D3F05E8F8567BC82E4E45DAE339CA37646707 | sha512: 6BBCFC58912066B604BE5248E79C898E2C0C246AC89F92793CD8B4FF55EF8B20FE8FE3E3A6628903B82218F30471E0DA17C192062BC073C61593CB777DDE8F9F
tools\bin\sp65.exe
md5: 9261F7393EC3F4EAF9C6AC407960FF12 | sha1: 9071CF45F5CB00DE23D8459B3F4673D2D8F5EBDC | sha256: 022C27BA08BC9AC2FE9F73710776E065C42E731CEFF058036A503F6176C1D423 | sha512: 17A148EB564F311338FD96092ECD7E59BA89FBB31CAECAB3D43BAF80B8EE0457B016D1E0815EB4878B2C0A31B1E3F1FA10FB06D1A05F3EE52076AA7188EF05AC
tools\cfg\apple2-asm.cfg
 
tools\cfg\apple2-hgr.cfg
 
tools\cfg\apple2-overlay.cfg
 
tools\cfg\apple2-system.cfg
 
tools\cfg\apple2.cfg
 
tools\cfg\apple2enh-asm.cfg
 
tools\cfg\apple2enh-hgr.cfg
 
tools\cfg\apple2enh-overlay.cfg
 
tools\cfg\apple2enh-system.cfg
 
tools\cfg\apple2enh.cfg
 
tools\cfg\atari-asm.cfg
 
tools\cfg\atari-cart.cfg
 
tools\cfg\atari-cassette.cfg
 
tools\cfg\atari-overlay.cfg
 
tools\cfg\atari.cfg
 
tools\cfg\atari2600.cfg
 
tools\cfg\atari5200.cfg
 
tools\cfg\atarixl-largehimem.cfg
 
tools\cfg\atarixl-overlay.cfg
 
tools\cfg\atarixl.cfg
 
tools\cfg\atmos.cfg
 
tools\cfg\bbc.cfg
 
tools\cfg\c128-overlay.cfg
 
tools\cfg\c128.cfg
 
tools\cfg\c16-32k.cfg
 
tools\cfg\c16.cfg
 
tools\cfg\c64-asm.cfg
 
tools\cfg\c64-overlay.cfg
 
tools\cfg\c64.cfg
 
tools\cfg\cbm510.cfg
 
tools\cfg\cbm610.cfg
 
tools\cfg\creativision.cfg
 
tools\cfg\gamate.cfg
 
tools\cfg\geos-apple.cfg
 
tools\cfg\geos-cbm.cfg
 
tools\cfg\lunix.cfg
 
tools\cfg\lynx-bll.cfg
 
tools\cfg\lynx-coll.cfg
 
tools\cfg\lynx-uploader.cfg
 
tools\cfg\lynx.cfg
 
tools\cfg\module.cfg
 
tools\cfg\nes.cfg
 
tools\cfg\none.cfg
 
tools\cfg\osic1p-asm.cfg
 
tools\cfg\osic1p.cfg
 
tools\cfg\pce.cfg
 
tools\cfg\pet.cfg
 
tools\cfg\plus4.cfg
 
tools\cfg\sim6502.cfg
 
tools\cfg\sim65c02.cfg
 
tools\cfg\supervision-128k.cfg
 
tools\cfg\supervision-16k.cfg
 
tools\cfg\supervision-64k.cfg
 
tools\cfg\supervision.cfg
 
tools\cfg\telestrat.cfg
 
tools\cfg\vic20-32k.cfg
 
tools\cfg\vic20.cfg
 
tools\include\6502.h
 
tools\include\apple2.h
 
tools\include\apple2enh.h
 
tools\include\apple2_filetype.h
 
tools\include\assert.h
 
tools\include\atari.h
 
tools\include\atari2600.h
 
tools\include\atari5200.h
 
tools\include\atari_atascii_charmap.h
 
tools\include\atari_screen_charmap.h
 
tools\include\atmos.h
 
tools\include\c128.h
 
tools\include\c16.h
 
tools\include\c64.h
 
tools\include\cbm.h
 
tools\include\cbm264.h
 
tools\include\cbm510.h
 
tools\include\cbm610.h
 
tools\include\cbm_filetype.h
 
tools\include\cc65.h
 
tools\include\conio.h
 
tools\include\creativision.h
 
tools\include\ctype.h
 
tools\include\dbg.h
 
tools\include\device.h
 
tools\include\dio.h
 
tools\include\dirent.h
 
tools\include\em.h
 
tools\include\em\em-kernel.h
 
tools\include\errno.h
 
tools\include\fcntl.h
 
tools\include\gamate.h
 
tools\include\geos.h
 
tools\include\geos\gconst.h
 
tools\include\geos\gdisk.h
 
tools\include\geos\gdlgbox.h
 
tools\include\geos\gfile.h
 
tools\include\geos\ggraph.h
 
tools\include\geos\gmemory.h
 
tools\include\geos\gmenu.h
 
tools\include\geos\gprocess.h
 
tools\include\geos\gsprite.h
 
tools\include\geos\gstruct.h
 
tools\include\geos\gsym.h
 
tools\include\geos\gsys.h
 
tools\include\inttypes.h
 
tools\include\iso646.h
 
tools\include\joystick.h
 
tools\include\joystick\joy-kernel.h
 
tools\include\limits.h
 
tools\include\locale.h
 
tools\include\lynx.h
 
tools\include\lz4.h
 
tools\include\modload.h
 
tools\include\mouse.h
 
tools\include\mouse\mouse-kernel.h
 
tools\include\nes.h
 
tools\include\o65.h
 
tools\include\osic1p.h
 
tools\include\pce.h
 
tools\include\peekpoke.h
 
tools\include\pen.h
 
tools\include\pet.h
 
tools\include\plus4.h
 
tools\include\serial.h
 
tools\include\setjmp.h
 
tools\include\signal.h
 
tools\include\stdarg.h
 
tools\include\stdbool.h
 
tools\include\stddef.h
 
tools\include\stdint.h
 
tools\include\stdio.h
 
tools\include\stdlib.h
 
tools\include\string.h
 
tools\include\supervision.h
 
tools\include\sys\types.h
 
tools\include\sys\utsname.h
 
tools\include\target.h
 
tools\include\telestrat.h
 
tools\include\tgi.h
 
tools\include\tgi\tgi-error.h
 
tools\include\tgi\tgi-kernel.h
 
tools\include\tgi\tgi-vectorfont.h
 
tools\include\time.h
 
tools\include\unistd.h
 
tools\include\vic20.h
 
tools\include\zlib.h
 
tools\include\_6522.h
 
tools\include\_6525.h
 
tools\include\_6526.h
 
tools\include\_6545.h
 
tools\include\_6551.h
 
tools\include\_antic.h
 
tools\include\_gtia.h
 
tools\include\_heap.h
 
tools\include\_mikey.h
 
tools\include\_pbi.h
 
tools\include\_pia.h
 
tools\include\_pokey.h
 
tools\include\_riot.h
 
tools\include\_sid.h
 
tools\include\_suzy.h
 
tools\include\_ted.h
 
tools\include\_tia.h
 
tools\include\_vdc.h
 
tools\include\_vic.h
 
tools\include\_vic2.h
 
tools\lib\apple2-iobuf-0800.o
 
tools\lib\apple2.lib
 
tools\lib\apple2enh-iobuf-0800.o
 
tools\lib\apple2enh.lib
 
tools\lib\atari.lib
 
tools\lib\atari2600.lib
 
tools\lib\atari5200.lib
 
tools\lib\atarixl.lib
 
tools\lib\atmos.lib
 
tools\lib\c128.lib
 
tools\lib\c16.lib
 
tools\lib\c64-soft80.o
 
tools\lib\c64-soft80mono.o
 
tools\lib\c64-tgimousedata.o
 
tools\lib\c64.lib
 
tools\lib\cbm510.lib
 
tools\lib\cbm610.lib
 
tools\lib\creativision.lib
 
tools\lib\gamate.lib
 
tools\lib\geos-apple.lib
 
tools\lib\geos-cbm.lib
 
tools\lib\lynx.lib
 
tools\lib\nes.lib
 
tools\lib\none.lib
 
tools\lib\osic1p-screen-s3-32x28.o
 
tools\lib\osic1p.lib
 
tools\lib\pce.lib
 
tools\lib\pet.lib
 
tools\lib\plus4.lib
 
tools\lib\sim6502.lib
 
tools\lib\sim65c02.lib
 
tools\lib\supervision.lib
 
tools\lib\telestrat.lib
 
tools\lib\vic20.lib
 
tools\LICENSE.txt
From: https://raw.githubusercontent.com/cc65/cc65/master/LICENSE

This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from
the use of this software.

Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:

1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software in
a product, an acknowledgment in the product documentation would be
appreciated but is not required.

2. Altered source versions must be plainly marked as such, and must not
be misrepresented as being the original software.

3. This notice may not be removed or altered from any source distribution.
tools\samples\ascii.c
 
tools\samples\atari2600hello.c
 
tools\samples\diodemo.c
 
tools\samples\enumdevdir.c
 
tools\samples\fire.c
 
tools\samples\geos\bitmap-demo.c
 
tools\samples\geos\bitmap-demores.grc
 
tools\samples\geos\dialog.c
 
tools\samples\geos\filesel.c
 
tools\samples\geos\fileselres.grc
 
tools\samples\geos\geosconio.c
 
tools\samples\geos\geosconiores.grc
 
tools\samples\geos\geosver.c
 
tools\samples\geos\geosverres.grc
 
tools\samples\geos\getid.c
 
tools\samples\geos\getidres.grc
 
tools\samples\geos\grphstr.c
 
tools\samples\geos\hello1.c
 
tools\samples\geos\hello1res.grc
 
tools\samples\geos\hello2.c
 
tools\samples\geos\hello2res.grc
 
tools\samples\geos\inittab.c
 
tools\samples\geos\logo.pcx
 
tools\samples\geos\menu.c
 
tools\samples\geos\overlay-demo.c
 
tools\samples\geos\overlay-demores.grc
 
tools\samples\geos\rmvprot.c
 
tools\samples\geos\rmvprotres.grc
 
tools\samples\geos\vector-demo.c
 
tools\samples\geos\vector-demores.grc
 
tools\samples\geos\yesno.c
 
tools\samples\geos\yesnores.grc
 
tools\samples\gunzip65.c
 
tools\samples\hello.c
 
tools\samples\Makefile
 
tools\samples\mandelbrot.c
 
tools\samples\mousedemo.c
 
tools\samples\multidemo.c
 
tools\samples\nachtm.c
 
tools\samples\overlaydemo.c
 
tools\samples\plasma.c
 
tools\samples\README
 
tools\samples\sieve.c
 
tools\samples\tgidemo.c
 
tools\samples\tutorial\hello.c
 
tools\samples\tutorial\text.s
 
tools\target\apple2\drv\emd\a2.auxmem.emd
 
tools\target\apple2\drv\joy\a2.stdjoy.joy
 
tools\target\apple2\drv\mou\a2.stdmou.mou
 
tools\target\apple2\drv\ser\a2.ssc.ser
 
tools\target\apple2\drv\tgi\a2.hi.tgi
 
tools\target\apple2\drv\tgi\a2.lo.tgi
 
tools\target\apple2\util\loader.system
 
tools\target\apple2enh\drv\emd\a2e.auxmem.emd
 
tools\target\apple2enh\drv\joy\a2e.stdjoy.joy
 
tools\target\apple2enh\drv\mou\a2e.stdmou.mou
 
tools\target\apple2enh\drv\ser\a2e.ssc.ser
 
tools\target\apple2enh\drv\tgi\a2e.hi.tgi
 
tools\target\apple2enh\drv\tgi\a2e.lo.tgi
 
tools\target\apple2enh\util\loader.system
 
tools\target\atari\drv\emd\atr130.emd
 
tools\target\atari\drv\joy\atrmj8.joy
 
tools\target\atari\drv\joy\atrstd.joy
 
tools\target\atari\drv\mou\atrami.mou
 
tools\target\atari\drv\mou\atrjoy.mou
 
tools\target\atari\drv\mou\atrst.mou
 
tools\target\atari\drv\mou\atrtrk.mou
 
tools\target\atari\drv\mou\atrtt.mou
 
tools\target\atari\drv\ser\atrrdev.ser
 
tools\target\atari\drv\tgi\atr10.tgi
 
tools\target\atari\drv\tgi\atr10p2.tgi
 
tools\target\atari\drv\tgi\atr11.tgi
 
tools\target\atari\drv\tgi\atr14.tgi
 
tools\target\atari\drv\tgi\atr15.tgi
 
tools\target\atari\drv\tgi\atr15p2.tgi
 
tools\target\atari\drv\tgi\atr3.tgi
 
tools\target\atari\drv\tgi\atr4.tgi
 
tools\target\atari\drv\tgi\atr5.tgi
 
tools\target\atari\drv\tgi\atr6.tgi
 
tools\target\atari\drv\tgi\atr7.tgi
 
tools\target\atari\drv\tgi\atr8.tgi
 
tools\target\atari\drv\tgi\atr8p2.tgi
 
tools\target\atari\drv\tgi\atr9.tgi
 
tools\target\atari\drv\tgi\atr9p2.tgi
 
tools\target\atari\util\w2cas.com
 
tools\target\atari5200\drv\joy\atr5200std.joy
 
tools\target\atarixl\drv\emd\atrx130.emd
 
tools\target\atarixl\drv\joy\atrxmj8.joy
 
tools\target\atarixl\drv\joy\atrxstd.joy
 
tools\target\atarixl\drv\mou\atrxami.mou
 
tools\target\atarixl\drv\mou\atrxjoy.mou
 
tools\target\atarixl\drv\mou\atrxst.mou
 
tools\target\atarixl\drv\mou\atrxtrk.mou
 
tools\target\atarixl\drv\mou\atrxtt.mou
 
tools\target\atarixl\drv\ser\atrxrdev.ser
 
tools\target\atarixl\drv\tgi\atrx10.tgi
 
tools\target\atarixl\drv\tgi\atrx10p2.tgi
 
tools\target\atarixl\drv\tgi\atrx11.tgi
 
tools\target\atarixl\drv\tgi\atrx14.tgi
 
tools\target\atarixl\drv\tgi\atrx15.tgi
 
tools\target\atarixl\drv\tgi\atrx15p2.tgi
 
tools\target\atarixl\drv\tgi\atrx3.tgi
 
tools\target\atarixl\drv\tgi\atrx4.tgi
 
tools\target\atarixl\drv\tgi\atrx5.tgi
 
tools\target\atarixl\drv\tgi\atrx6.tgi
 
tools\target\atarixl\drv\tgi\atrx7.tgi
 
tools\target\atarixl\drv\tgi\atrx8.tgi
 
tools\target\atarixl\drv\tgi\atrx8p2.tgi
 
tools\target\atarixl\drv\tgi\atrx9.tgi
 
tools\target\atarixl\drv\tgi\atrx9p2.tgi
 
tools\target\atmos\drv\joy\atmos-ijk.joy
 
tools\target\atmos\drv\joy\atmos-pase.joy
 
tools\target\atmos\drv\ser\atmos-acia.ser
 
tools\target\atmos\drv\tgi\atmos-228-200-3.tgi
 
tools\target\atmos\drv\tgi\atmos-240-200-2.tgi
 
tools\target\c128\drv\emd\c128-efnram.emd
 
tools\target\c128\drv\emd\c128-georam.emd
 
tools\target\c128\drv\emd\c128-ifnram.emd
 
tools\target\c128\drv\emd\c128-ram.emd
 
tools\target\c128\drv\emd\c128-ram2.emd
 
tools\target\c128\drv\emd\c128-ramcart.emd
 
tools\target\c128\drv\emd\c128-reu.emd
 
tools\target\c128\drv\emd\c128-vdc.emd
 
tools\target\c128\drv\joy\c128-ptvjoy.joy
 
tools\target\c128\drv\joy\c128-stdjoy.joy
 
tools\target\c128\drv\mou\c128-1351.mou
 
tools\target\c128\drv\mou\c128-inkwell.mou
 
tools\target\c128\drv\mou\c128-joy.mou
 
tools\target\c128\drv\mou\c128-pot.mou
 
tools\target\c128\drv\ser\c128-swlink.ser
tools\target\c128\drv\tgi\c128-vdc.tgi
 
tools\target\c128\drv\tgi\c128-vdc2.tgi
 
tools\target\c16\drv\emd\c16-ram.emd
 
tools\target\c16\drv\joy\c16-stdjoy.joy
 
tools\target\c64\drv\emd\c64-65816.emd
 
tools\target\c64\drv\emd\c64-c256k.emd
 
tools\target\c64\drv\emd\c64-dqbb.emd
 
tools\target\c64\drv\emd\c64-georam.emd
 
tools\target\c64\drv\emd\c64-isepic.emd
 
tools\target\c64\drv\emd\c64-ram.emd
 
tools\target\c64\drv\emd\c64-ramcart.emd
 
tools\target\c64\drv\emd\c64-reu.emd
 
tools\target\c64\drv\emd\c64-vdc.emd
 
tools\target\c64\drv\emd\dtv-himem.emd
 
tools\target\c64\drv\joy\c64-hitjoy.joy
 
tools\target\c64\drv\joy\c64-numpad.joy
 
tools\target\c64\drv\joy\c64-ptvjoy.joy
 
tools\target\c64\drv\joy\c64-stdjoy.joy
 
tools\target\c64\drv\mou\c64-1351.mou
 
tools\target\c64\drv\mou\c64-inkwell.mou
 
tools\target\c64\drv\mou\c64-joy.mou
 
tools\target\c64\drv\mou\c64-pot.mou
 
tools\target\c64\drv\ser\c64-swlink.ser
tools\target\c64\drv\tgi\c64-hi.tgi
 
tools\target\cbm510\drv\emd\cbm510-ram.emd
 
tools\target\cbm510\drv\joy\cbm510-std.joy
 
tools\target\cbm510\drv\mou\cbm510-inkwl.mou
 
tools\target\cbm510\drv\mou\cbm510-joy.mou
 
tools\target\cbm510\drv\ser\cbm510-std.ser
 
tools\target\cbm610\drv\emd\cbm610-ram.emd
 
tools\target\cbm610\drv\ser\cbm610-std.ser
 
tools\target\creativision\drv\joy\creativision-stdjoy.joy
 
tools\target\gamate\drv\joy\gamate-stdjoy.joy
 
tools\target\geos-apple\util\convert.system
 
tools\target\geos-cbm\drv\emd\geos-vdc.emd
 
tools\target\geos-cbm\drv\joy\geos-stdjoy.joy
 
tools\target\geos-cbm\drv\tgi\geos-tgi.tgi
 
tools\target\lynx\drv\joy\lynx-stdjoy.joy
 
tools\target\lynx\drv\ser\lynx-comlynx.ser
 
tools\target\lynx\drv\tgi\lynx-160-102-16.tgi
 
tools\target\nes\drv\joy\nes-stdjoy.joy
 
tools\target\nes\drv\tgi\nes-64-56-2.tgi
 
tools\target\pce\drv\joy\pce-stdjoy.joy
 
tools\target\pet\drv\joy\pet-ptvjoy.joy
 
tools\target\pet\drv\joy\pet-stdjoy.joy
 
tools\target\plus4\drv\joy\plus4-stdjoy.joy
 
tools\target\plus4\drv\ser\plus4-stdser.ser
 
tools\target\supervision\drv\joy\supervision-stdjoy.joy
 
tools\target\telestrat\drv\tgi\telestrat-228-200-3.tgi
 
tools\target\telestrat\drv\tgi\telestrat-240-200-2.tgi
 
tools\target\vic20\drv\joy\vic20-ptvjoy.joy
 
tools\target\vic20\drv\joy\vic20-stdjoy.joy
 
tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
To verify the package, build it using the build script at 
https://github.com/empathicqubit/empathicqubit-chocolatey/blob/master/cc65-compiler/build.ps1
You will need Make and mingw installed.

Log in or click on link to see number of positives.

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
CC65 Compiler (Install) 2.19-ffa83c3 35 Monday, February 27, 2023 Exempted
CC65 Compiler (Install) 2.19-de30a57 31 Sunday, December 25, 2022 Exempted
CC65 Compiler (Install) 2.19-dae4b2d 28 Wednesday, December 7, 2022 Exempted
CC65 Compiler (Install) 2.19-d9ebfa7 34 Tuesday, December 13, 2022 Exempted
CC65 Compiler (Install) 2.19-d0f17ba 33 Monday, February 20, 2023 Exempted
CC65 Compiler (Install) 2.19-cce119a 33 Saturday, December 31, 2022 Exempted
CC65 Compiler (Install) 2.19-c226e58 32 Sunday, March 5, 2023 Exempted
CC65 Compiler (Install) 2.19-c097401 28 Saturday, February 18, 2023 Exempted
CC65 Compiler (Install) 2.19-bad961b 36 Wednesday, November 30, 2022 Exempted
CC65 Compiler (Install) 2.19-ac987e2 31 Friday, February 24, 2023 Exempted
CC65 Compiler (Install) 2.19-a299ef4 22 Saturday, February 25, 2023 Exempted
CC65 Compiler (Install) 2.18 125 Sunday, June 20, 2021 Approved
CC65 Compiler (Install) 2.17 292 Tuesday, September 15, 2020 Approved

This package has no dependencies.

Discussion for the CC65 Compiler (Install) Package

Ground Rules:

  • This discussion is only about CC65 Compiler (Install) and the CC65 Compiler (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 CC65 Compiler (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.
comments powered by Disqus