cc2600

cc2600 implements a subset of C compiler for Atari 2600. The main goal of cc2600 is to enable making games for the Atari 2600 using C language, including writing kernels, not to provide full C support for the 6502 (have a look at cc65 if this is what you are looking for). Any code written for cc2600 can be compiled with gcc, but not the other way round... The 6502 processor is famous for being an inefficient target for C compilers, due to its poor stack support, its infamous indexing modes and its lack of registers. In addition to the limitations of the Atari 2600 (128 bytes of RAM, strong reliance on bankswitching, low speed in general), the use of pure C on this platform is limited. cc2600 tries to cope with these limitations by not strictly implementing all C features but mapping C syntax to the specifics of 6502, in particular indexing modes.

Note that this compiler is for writing "old school" code for ATARI 2600. It's not meant to be used for CDFJ (custom ARM code on the Melody/Harmony cart) development, where the 6507 code is reduced to the minimum. On the contrary, it was designed to write code the classical atari way, possibly with DPC or DPC+ accelerators or a superchip for more RAM.

cc2600 should not be a starting point for writing ATARI 2600. You'll first have to learn writing games in assembler (I definitely recommand reading "Making Games For The Atari 2600", by Steven Hugg, see http://8bitworkshop.com/docs/book). On the other hand, if you're an experienced ASM code writer, you may gain a lot of time using cc2600 for your next game developement, since cc2600 will enable you to leverage the use of structural code writing.

Main features

Known limitations

How to install

Installing from source is quite straightforward when Rust is available on your platform. If this is not the case, please use rustup to install it, then use cargo install --path . in the root directory to compile and install cc2600 locally. cargo test launches the unit tests of cc2600.

A big example of what is possible with cc2600 is the HappyBird game, freely available for download.

A few examples are also available in the examples directory. For instance, if you want to run the magnificient DPC (David Patrick Crane coprocessor) example featuring Garfield, type :

cc2600 examples/test_dpc.c

This will produce out.a, which is a DASM compatible source code.

Type dasm out.a -f3 -v4 -oout.bin -lout.lst -sout.sym to make the cartridge.

You can then use the stella emulator to run the binary out.bin, or copy it on a Harmony ou PlusCart cartridge.

TODO

In Memoriam

Chuck Peddle 1937 - 2019