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,186

Downloads of v 2.19:

428

Last Update:

20 Jun 2021

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)

  • 1
  • 2
  • 3

2.19 | Updated: 20 Jun 2021

Downloads:

1,186

Downloads of v 2.19:

428

Maintainer(s):

Software Author(s):

  • oliverschmidt

CC65 Compiler (Install) 2.19

  • 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 as a Note:

At least one file within this package has greater than 0 detections, but less than 5

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'" [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'" 
$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.19'
    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.19'
end

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


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

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


package { 'cc65-compiler':
  ensure   => '2.19',
  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 21 Aug 2021.

Description

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


tools\asminc\accelerator.inc
 
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\cbm_kernal.inc
 
tools\asminc\cpu.mac
 
tools\asminc\creativision.inc
 
tools\asminc\ctype.inc
 
tools\asminc\ctypetable.inc
 
tools\asminc\ctype_common.inc
 
tools\asminc\cx16.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: B4624F704642C334A108630EE4FAFB9D | sha1: 4EAD6C6A5B4B2FD12B9F335BE04F36B59FE1B99F | sha256: 26EDC6791FC3F52620E66F02E10AB5C30A5CF9ECC8280FD39A1166B9EFF93405 | sha512: 7CB48264093A2427C22626080632DDAF760125E1D1D4FD8A716E2BF81142D213681010964A7FA8A75F5B7FF2F128BD25D3DDC26F27917B7BE80A8192532CF0CE
tools\bin\ca65.exe
md5: 536A9B1DB8CFA4BDDF9CE6823CBA3F5B | sha1: 57DFC96CCBDDE0623036B99EF9FF0ED5D26AEB51 | sha256: 0CCA65A2D978D395333BCD71D394DA10D659B5D49EDAB4035F588DB969728B20 | sha512: 33BA33EF5692CCF316CC2015C319B25B159AB9FC8D2C869E0405A9B186DAC5301F5B01E7FD09DFBCC3C5F01AB6D3524B7A6A4DF7AE3B8762F378D21BE98E08DF
tools\bin\cc65.exe
md5: 0B27CC1D8812E8CACAF713E795030C0E | sha1: AD9C7D1EE320F515EA2A6B355F95CBA69E8E1B4B | sha256: E69B555F616A0D3EBCB7C49D2983DC734D348C73BB5E6CC314E6142661B3DECA | sha512: EBBD08672AF720AEBF317C40FF3A139270CBF714A10AE39CC75032EEA8284E231CF48D3130C9DAA2029C536706E12A7CF3695C772BA498ED6EAD58A6FC0F281E
tools\bin\chrcvt65.exe
md5: 081BECCC3AB47FEA86B915837C8F740E | sha1: AD2329F05F381DD5F8E8CE9783BB589CC383F12F | sha256: 544AE49DDCC4880D9D0F68D79D36098EEE5DD80A6573AA24D802478595059914 | sha512: FF0C6101F6A2CC14F286AD3FAEA1870634BE192FFFFD7DF189D01B83677D70B161B994B7F8EDC23475B5D40008B669A5E07C4057EE40A8E24725FC4D7F8478ED
tools\bin\cl65.exe
md5: C0C844AF9E387EE8B8CD4C67D273EDDC | sha1: 64D8131C6AC856ACBD2145B4C09D16AD97880B53 | sha256: F778D3841AB710F6C6C01A8ED7AD45217E7308774D6265205D519B43CA29A45B | sha512: 5440392435B2BE8D549D8136DAE4AC6218F0698AE3691B8E0529886FA878DAEED6D75498D7AA46D7562BABE1815A9137060B8DE0B5FDB011E99A764931680888
tools\bin\co65.exe
md5: 4B1EFB2F2BB91B2C8B27878355332831 | sha1: 5D467996B461829853211009CAD8E2FAF9574FF1 | sha256: A425F77E4367188342EFE8AB4152830699C2B6A5705791BF7BF39EC3478F9E27 | sha512: 98219FCD7B2CBC9885ED73136414B56AE2E0FEB7E1049DE50043D5CD9F3CFE7E0741EB040EB6839EF51BBBA9F20458DCE9392ABFE9D0141FE152F6EAA555809F
tools\bin\da65.exe
md5: 4BDFD7D80F25EFF0F730AFE7B063F602 | sha1: E48DEE1EB3698AC80A52B5C7FBE6D7E371A0404F | sha256: 667DD27B72207598525A8F39264A0EE5F074AC60E0DC7A1EA5CDFAFDE5439132 | sha512: 4BCFBBB772E6E50275EA5719F8CB79599152F77F892A695D5E64FF12BBF3AA9B8A263E9E4FDD6957F6D630A08CF8DB29F21C60B92751D8D61046D024AAF66CAC
tools\bin\grc65.exe
md5: CFC6A139501A72147AA40C866E80FEC6 | sha1: 69274181E4F583C4D7E3C17B19BD9E32A724C2F9 | sha256: E3280659B24AD65A9438F378E085BE7783CCCEDDA648A88E718223F6CCB60992 | sha512: FF03AB2B537DFDB165DD0C9671FC80CD03078C9712165671622FB4121F02B165C88797531FC37EB7854DD57CC36F44ACB37F6D78D58630E4016AF36CA372FB88
tools\bin\ld65.exe
md5: 42483688CE2EA05CE23558B41AFA262B | sha1: 438D3D0C3B861AF10E564F99EA2A3F10D2C10921 | sha256: A24E21D3D9BFB0BBCBAA7BBEF717BDF3FB4E6C9A88D6D2081AEE76663B75028E | sha512: 7B29C602D821836713280F7E50DA524EE65A575997D6FBC1ABD7257ED0F2D32C79343CC1E1E0FB9DD683A76D08623A0B581F7A773BEF1DD8E80134EAB7B85DE3
tools\bin\od65.exe
md5: B6707123D3459A8943DF5BD7BE377451 | sha1: 859B2B71985BA6272DE93AC408905B79DC90600A | sha256: FC381BB63F9CB40FAFD241F59C9DC44D52434BEB8237541A83E9D923A2CFF740 | sha512: D30D9FAB7AC807E529DD97A2CE04251F7A064B594F7E3D7238F8D737130873EB040E380CCF5B88391298C69CE0E73DEA91657ACF1FFE4FB46A81C6CE9E97D60A
tools\bin\sim65.exe
md5: 3729450998197E5813F7A1F047D414C1 | sha1: 46E6399948AE499903F1C264E5F22806C75CC223 | sha256: B08D30DC4028CDAB240597253EB8E5D1EBDB8567225FB71C31D23B03BEF4B8D4 | sha512: 081FF26AD4DA69F8960A84FCCE1F851F96271E844EFC73E1AC1A6B0CE8FEE430715DCB3D98B4981C50872F79C94486FE50F7E90788486F4C853522DAD8E4E153
tools\bin\sp65.exe
md5: D9EE4692F7A93379EB52E6EDF6B3231B | sha1: 4D7B31D419447C6CFF1D2A94F6ED0B85924ECCEB | sha256: 151908E3AB7E21A33E23303F6C12C8EF304F2BC93225A977D41443C8437146E6 | sha512: 431348694E9B841B93D504CFDFCA19F76A5F3A4C897750231C3356CC6D7AA4A81D3CF64310EAEA6BD62FAA2D11A4DFEB6545019DAF7B93A6579D718350FC5EEC
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-xex.cfg
 
tools\cfg\atari-asm.cfg
 
tools\cfg\atari-cart.cfg
 
tools\cfg\atari-cassette.cfg
 
tools\cfg\atari-overlay.cfg
 
tools\cfg\atari-xex.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-xex.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\cx16-asm.cfg
 
tools\cfg\cx16-bank.cfg
 
tools\cfg\cx16.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\accelerator.h
 
tools\include\apple2.h
 
tools\include\apple2enh.h
 
tools\include\apple2_filetype.h
 
tools\include\ascii_charmap.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\cbm_petscii_charmap.h
 
tools\include\cbm_screen_charmap.h
 
tools\include\cc65.h
 
tools\include\conio.h
 
tools\include\creativision.h
 
tools\include\ctype.h
 
tools\include\cx16.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\stat.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\_atarios.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-conioscreen-20x12.o
 
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\cx16.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\supervisionhello.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-hi.tgi
 
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\cx16\drv\joy\cx16-std.joy
 
tools\target\cx16\drv\mou\cx16-std.mou
 
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\joy\telestrat.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\emd\vic20-georam.emd
 
tools\target\vic20\drv\emd\vic20-rama.emd
 
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 30 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 31 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