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

Downloads of v 2.18:

125

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)

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

  • 1
  • 2
  • 3

2.18 | Updated: 20 Jun 2021

Downloads:

1,185

Downloads of v 2.18:

125

Maintainer(s):

Software Author(s):

  • oliverschmidt

CC65 Compiler (Install) 2.18

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 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'" --version="'2.18'" [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.18'" 
$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.18'
    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.18'
end

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


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

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


package { 'cc65-compiler':
  ensure   => '2.18',
  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\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: D6F71F0D3CBA18B00996810B75BC90FE | sha1: E6E65F0E5CAE571C42D980987E0AB6978386F8C3 | sha256: A8929D1E9A162D8A3B55BBF48F924924439FD2E9E0CC07D0BCBAF3E0640902F9 | sha512: 06ACB20C016015EE9A5CF0B84BB49148E9470707BDE02F1FEBAD8132BA6E3F9927571A5AF62FE2D576FFE911866E8ACD2634C2E30B260C722A9E142FF5D4DC50
tools\bin\ca65.exe
md5: EE99E23689046AAA26672C2FDD2228F6 | sha1: 1DB1905FC55E24EB51B354649E342BED4D3387AE | sha256: EC193945718ADC51A7C08D41F5BE93E98603099753DC1A82759BDAE14787EC0A | sha512: 937308B5D1DC25915ED6CE552576DF9BDEF64DBCCD79DE262B75267B44F740B825D358E45D093B9D66D1EE063DA52E019288FB4B9DB4302B9B971FBAED75DC2A
tools\bin\cc65.exe
md5: 22DA58CEC55E920734D13F2E92F54C46 | sha1: 80FB564041B1709D51561F141199D0DF028B40FF | sha256: 4258F31DEFB2826B5649B654D260F376325E23EC1DEED0E17C01CD20FE81A823 | sha512: 9A137E417C0D8AA12168AAA9099FBAEDDDB507C83B29B7463439992B40752D9597354380E082D66DAB98999F145B1643620E1408140776EBBCD255D91FFD8C2E
tools\bin\chrcvt65.exe
md5: 8FCDB42C6E200558F360C7C9718793DB | sha1: EB1A3C4D21640475C460453E5B7123DD42858CCA | sha256: A78F95B1BD23161395AAB52AF0A9CD22C1953EC562F70DB45DA6615FB1ABEB37 | sha512: BCC13007C7A9E3127984DA92245949A48604EFFB2C69505C8B4F394F5EB8B92CF3EEF9435C5755BE947B53A53A29158C322B5B2456B0FAC4756ADB578440EADF
tools\bin\cl65.exe
md5: 783E1CBFD9FF1E08EA9B7E709FA58A1F | sha1: 2F2565CFD8AFCD5008A59061DAD1A5B5DEC66C5C | sha256: 2A12E139F4D01FFAC2047B352D9A4A111D74FC7288EB8DA3B23B1074F3B2D3CB | sha512: 983C82584C43E831730D91C7F6101ED5EC02E5546743ABF3AC9E72D639D8646DF51EFDD979B1AF6303A293C6A05A28CA66C75B69ACD624187C141EABF5A383FE
tools\bin\co65.exe
md5: 2E5DAF62C8063CC0D6333CA50B6A1255 | sha1: DDB56EA20A24852839C7491F6BCF997C01E3F949 | sha256: 2CCBC8848D1E00A69051B9A0E6239261AB2F27A1D6C5A206C67CEA2CD66EA81B | sha512: 2CDFA73421A9678551F5B32956B270A3528D34C4D7CA8D21AC61932FE9153A97048377ED8C35595086192E23ACB0A656E6BC31E3418A3586C5C4B324A7E52A1F
tools\bin\da65.exe
md5: 7EB2D234A8A65A57DE6284757BC26168 | sha1: 01894AEEECFB1FFACAB882F15F84421FCCB67C9B | sha256: 866B429D65CB3063E9BB249928A3930B57A1A27D20F26CFD8F2901DEB7EC372E | sha512: B42B5FE134F1FEDFF1C1A766B35CEA779309C3998696D903D18D6C937F9A1839AFFF3BFFE4D8F6FB9F365D21096DBDF135BD78AAF4EA5CD3AE27904B410E0533
tools\bin\grc65.exe
md5: 8AB16145FCABC819E8FA69D97E67BD9B | sha1: 258932FCE22D9C2FED0B5AD792935C160B731A0F | sha256: 6A31EF672CE383F629BB24FC64377DEDCC0815B35637469F1F5AD3238D4EF61D | sha512: 889AFD599A8FE8F02BD9A1FE81491C9CBD3BF7EFF7647994ACDE7635EE3C2B1C18A763E7104F447D08FCF5DFFDB72706C3EA5B6F7FB7AF689BEEAD0312F3ACC7
tools\bin\ld65.exe
md5: DCD17388C198ABE918D12635D5906CB4 | sha1: 6AE458907EE4A6F468CB55C63CB555ADAD062F88 | sha256: 27B1AAE1F5D07EFE1DF095B0B553E315201A659447201DAD772F86F7787CB0DA | sha512: D20B2CFDDC02A1800898D95DF7BC9BFAB83D1F1DAA272B7D61C5E2B37A489A9510DFD730CEFB2B1B42F5C167BAB0350379032D7010100F24C07CEE33B1FB3AA1
tools\bin\od65.exe
md5: 67261944E87215BC32EB2660F72B98F1 | sha1: 870AB945409CEAF579A580277ED9483AB0D5BC17 | sha256: DA23250F8CDDAEB62D1A8E06EF1D2FC9A64FE50BD4ED8129B2D840F78C5DD15E | sha512: 15FD7ED77887D1AFB5CC6732256E779B956FA4A37EA4012D6EEF3B89AB6367A5912BA82325002E9911E52B07DBCC8DE0B5F32BE31EC3F7E3D67A9BF59B3D755F
tools\bin\sim65.exe
md5: 94BB328ADDCC920837C5343B78747642 | sha1: FF639879ED14E8C24CDF9A345771C06057E117BD | sha256: D2A6C5AC33602DCB2DB1B026CCAA1CF31FD0A97771573BAA338A669CD8456BAF | sha512: 960BF46538B640A335A943676FCBB3CD7AAFA513F2A89CF5F718C4B439413B80F76040460C12EC22E28B3DED03FC5BFCA99C33438D5A88B118A010B02F9F114F
tools\bin\sp65.exe
md5: 863C2D79B059A84CC08EEC61201B7A16 | sha1: 6B63F230FEF35ED3F4F8BBF9359BCC7DC9658A05 | sha256: 2EA1777DEA102CA0340F7791DB094EED0BF5A221019CE23394DE8901F117828A | sha512: E383414A9AD5F332B6E2890DBF9EF84707BA4B2EED060A091400D0200A6FF436F9C7848EBE1E809C002AD1091A13D48388572A9A5FBDDC4C9C161D86C23B33D0
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\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\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\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\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-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\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\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