C syntax compiler optimized for the 6502 microprocessor
Go to file
Curtis F Kaylor 341b38f012 Add/update Apple ][ test programs 2018-03-03 13:28:22 -05:00
apple1 Removed obsolete header file apple1/oldclude/apple1.h 2018-01-28 15:02:49 -05:00
apple2 Add/update Apple ][ test programs 2018-03-03 13:28:22 -05:00
doc Added multiple return values on functions 2018-03-01 23:46:23 -05:00
include Renamed Apple 2 standard header files 2018-02-17 13:52:13 -05:00
py65 Added py65mon test programs 2018-02-13 19:52:14 -05:00
test Added generic C02 test programs test/* 2018-01-28 14:47:06 -05:00
vcs Added Atari 2600 C02 test programs vcs/*.c02 2018-01-28 14:44:10 -05:00
vic20 Added VIC-20 specific C02 compile scripts vic20/c02.bat and vic20/c02.sh 2018-01-28 14:38:11 -05:00
.gitignore Fixed type in block.h02. modified clean02.bat 2018-02-13 19:53:45 -05:00
Makefile Fixed undeclared function warnings 2018-02-13 17:25:57 -05:00
README.md Updated Intro section of README.md 2018-02-03 14:10:33 -05:00
a02.sh Added Makefile and a02.sh shell script 2018-02-13 10:19:24 -05:00
asm.c Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00
asm.h Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00
asm6502.c Numerous modifications 2017-06-26 20:16:23 -04:00
c02.bat Added DOS batch, Bash script, and Notepad++ language files 2018-01-28 13:43:17 -05:00
c02.c Added multiple return values on functions 2018-03-01 23:46:23 -05:00
c02.lang Added DOS batch, Bash script, and Notepad++ language files 2018-01-28 13:43:17 -05:00
c02.ppj Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00
c02.sh Added DOS batch, Bash script, and Notepad++ language files 2018-01-28 13:43:17 -05:00
clean02.bat Fixed type in block.h02. modified clean02.bat 2018-02-13 19:53:45 -05:00
clean02.sh Added cleanup scripts clean02.bat and clean02.sh 2018-01-28 14:57:18 -05:00
common.c Fixed undeclared function warnings 2018-02-13 17:25:57 -05:00
common.h Added command line option -H 2018-02-17 14:50:43 -05:00
cond.c Fixed undeclared function warnings 2018-02-13 17:25:57 -05:00
cond.h Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00
dclrtn.c Moved ACMNT macro call to inside getwrd() 2018-02-26 22:42:27 -05:00
dclrtn.h Fixed undeclared function warnings 2018-02-13 17:25:57 -05:00
expr.c Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00
expr.h Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00
files.c Save entire project before changing condition parser to use JMP 2017-04-22 14:39:52 -04:00
files.h Fixed undeclared function warnings 2018-02-13 17:25:57 -05:00
include.c Added ENUM directive 2018-02-26 23:21:01 -05:00
include.h Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00
label.c Fixed undeclared function warnings 2018-02-13 17:25:57 -05:00
label.h Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00
parse.c Added multiple return values on functions 2018-03-01 23:46:23 -05:00
parse.h Added multiple return values on functions 2018-03-01 23:46:23 -05:00
stmnt.c Added multiple return values on functions 2018-03-01 23:46:23 -05:00
stmnt.h Added multiple return values on functions 2018-03-01 23:46:23 -05:00
test.asm Initial commit of c02.c and test.asm 2017-03-28 00:09:18 -04:00
vars.c Added multiple return values on functions 2018-03-01 23:46:23 -05:00
vars.h Cleaned up definitions in .h files 2018-02-13 18:16:23 -05:00

README.md

C02

C02 is a simple C-syntax language designed to generate highly optimized code for the 6502 microprocessor. The C02 specification is a highly specific subset of the C standard with some modifications and extensions

The compiler generates assembly language code, currently targeted to the DASM assembler.

See the top-level documentation for more information.

Building the Compiler

In Linux, use gcc and the Makefile.

In Windows use the Pelles C IDE and the file ./C02.ppj.

Compiling C02 programs

At a command line, cd into the appropriate directory, e.g. py65 or vic20.

Execute the c02 compiler from the parent directory using the c02 source file (without the .c02 extension) as an argument.

For example, to compile the program conds.c02, in the py65 directory, use the command

../c02 conds

in Linux, or

..\c02 conds

in Windows.

Some of the subdirectories contain a c02.bat file, which will compile the .c02 program, then run dasm to assemble the code. However, the path to dasm is hardcoded, so you will likely need to change it.

The file c02.sh provides the same functionality in Linux, but it may not be in a working state.