Go to file
Stephen Heumann 0184e3db7b Recognize the new keywords from C99 and C11 as such.
Specifically, the following will now be tokenized as keywords:

_Alignas
_Alignof
_Atomic
_Bool
_Complex
_Generic
_Imaginary
_Noreturn
_Static_assert
_Thread_local
restrict

('inline' was also added as a standard keyword in C99, but ORCA/C already treated it as such.)

The parser currently has no support for any of these keywords, so for now errors will still be generated if they are used, but this is a first step toward adding support for them.
2020-01-03 22:48:53 -06:00
ORCACDefs Add prototypes for SANE housekeeping calls in <sane.h>. 2018-11-19 21:56:24 -06:00
Tests Remove a test that expected floating-point division by 0.0 to fail. 2019-03-31 18:46:29 -05:00
obj ORCA/C 2.1.0 source from the Opus ][ CD 2017-10-01 17:47:47 -06:00
Asm.pas Move some code from the blank segment to named load segments. 2017-10-21 20:36:21 -05:00
C.Update.ReadMe Update documentation to cover format checking and other recent changes. 2018-09-03 18:21:39 -05:00
CC.pas Allow declarations in first clause of for loop (C99). 2018-04-01 16:48:11 -05:00
CC.rez Update ORCA/C version number to 2.2.0 B3. 2018-09-15 12:20:08 -05:00
CC.rez2 Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
CCommon.asm Move some code from the blank segment to named load segments. 2017-10-21 20:36:21 -05:00
CCommon.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
CCommon.pas Recognize the new keywords from C99 and C11 as such. 2020-01-03 22:48:53 -06:00
CGC.asm Expand all tabs in assembly files to spaces. 2018-02-10 21:55:24 -06:00
CGC.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
CGC.pas Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
CGI.Comments Make % operator give proper remainders even if one or both operands are negative. 2018-09-10 18:21:17 -05:00
CGI.Debug Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
CGI.pas Don't allocate stack space for varargs stack repair unless it's needed. 2018-01-13 20:02:43 -06:00
DAG.pas Do not dereference and write through a null pointer during loop invariant removal. 2019-12-22 19:58:57 -06:00
DAG2.pas Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Debugger.md merge in updates from the ORCA Debugger disk. 2018-03-25 00:33:31 -04:00
Exp.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Expression.asm Move some code from the blank segment to named load segments. 2017-10-21 20:36:21 -05:00
Expression.pas Set expressionType to a default value when LoadAddress encounters an error. 2019-12-23 20:36:27 -06:00
Gen.pas Fix bug where the condition check of the ?: operator may be mis-evaluated. 2018-09-14 13:25:40 -05:00
Header.pas Recognize the new keywords from C99 and C11 as such. 2020-01-03 22:48:53 -06:00
Header2.pas Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
LICENSE ORCA/C 2.1.0 source from the Opus ][ CD 2017-10-01 17:47:47 -06:00
MM.asm Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
MM.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
MM.pas Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
Native.asm Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
Native.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Native.pas Disable a native-code optimization that was generating bad code for %. 2018-09-10 19:29:16 -05:00
Native2.pas Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
ObjOut.asm Expand all tabs in assembly files to spaces. 2018-02-10 21:55:24 -06:00
ObjOut.macros Expand the size of the object buffer from 64K to 128K, and use 32-bit values to track related sizes. 2017-10-21 20:36:21 -05:00
ObjOut.pas Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
ObjOut2.asm Expand all tabs in assembly files to spaces. 2018-02-10 21:55:24 -06:00
ObjOut2.pas Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Parser.pas When initializing bitfields of type long, do not treat their values as pointer constants. 2019-12-24 18:52:25 -06:00
Printf.pas Small format checker adjustments. 2018-09-02 15:12:52 -05:00
README.md Add link to binary downloads in the readme shown on GitHub. 2017-10-24 21:10:11 -05:00
Scanner.asm Adjust how messages from the printf/scanf format checker are displayed. 2018-09-01 19:59:52 -05:00
Scanner.debug Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Scanner.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Scanner.pas Recognize the new keywords from C99 and C11 as such. 2020-01-03 22:48:53 -06:00
Symbol.Print Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Symbol.asm Move some code from the blank segment to named load segments. 2017-10-21 20:36:21 -05:00
Symbol.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Symbol.pas Avoid null pointer dereferences when processing K&R-style function parameter declarations. 2019-12-22 23:16:26 -06:00
Table.asm Recognize the new keywords from C99 and C11 as such. 2020-01-03 22:48:53 -06:00
Table.macros Recognize the new keywords from C99 and C11 as such. 2020-01-03 22:48:53 -06:00
Table.pas Recognize the new keywords from C99 and C11 as such. 2020-01-03 22:48:53 -06:00
backup Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
cc.notes Update release notes. 2018-09-15 12:19:47 -05:00
count Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
linkit Squashed commit of the following: 2018-03-23 21:51:27 -04:00
linkit2 Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
make Adjust how messages from the printf/scanf format checker are displayed. 2018-09-01 19:59:52 -05:00
make2 Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
settypes Add settypes script for setting file types, and update README to refer to it. 2017-10-21 21:17:58 -05:00
smake Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00

README.md

ORCA-C

Apple IIGS ORCA/C Compiler, an ANSI C compiler for the 65816 with libraries for the Apple IIGS

Binary downloads for the latest ORCA/C release are on the releases page.

If you would like to make changes to this compiler and distribute them to others, feel free to submit them here. If the changes apply to compilation on and for an Apple IIGS, they will generally be approved for distribution on the master branch unless the changes deviate significantly from the ANSI C standard. For changes that deviate form ANSI C or changes that retarget the compiler to run on a different platform or generate code for a different platform, the project will either be forked or a new repository will be created, as appropriate.

The general conditions that must be met before a change is released on master are:

  1. The modified compiler must compile under the currently released version of ORCA/M and ORCA/Pascal.

  2. All samples from the original ORCA/C distribution must compile and execute under the modified compiler, or the sample must be updated, too.

  3. The compiler must pass the ORCA/C tset suite, or the test suite must be suitably modified, too.

  4. The compiler must work with the current ORCA/C libraries, or the libraries must be modified, too.

Contact support@byteworks.us if you need contributor access.

A complete distribution of the ORCA languages, including installers and documentation, is available from the Juiced GS store at https://juiced.gs/store/category/software/. It is distributed as part of the Opus ][ package.

Line Endings and File Types

The text and source files in this repository originally used CR line endings, as usual for Apple II text files, but they have been converted to use LF line endings because that is the format expected by Git. If you wish to move them to a real or emulated Apple II and build them there, you will need to convert them back to CR line endings.

If you wish, you can configure Git to perform line ending conversions as files are checked in and out of the Git repository. With this configuration, the files in your local working copy will contain CR line endings suitable for use on an Apple II. To set this up, perform the following steps in your local copy of the Git repository (these should be done when your working copy has no uncommitted changes):

  1. Add the following lines at the end of the .git/config file:
[filter "crtext"]
	clean = LC_CTYPE=C tr \\\\r \\\\n
	smudge = LC_CTYPE=C tr \\\\n \\\\r
  1. Add the following line to the .git/info/attributes file, creating it if necessary:
* filter=crtext
  1. Run the following commands to convert the existing files in your working copy:
rm .git/index
git checkout HEAD -- .

Alternatively, you can keep the LF line endings in your working copy of the Git repository, but convert them when you copy the files to an Apple II. There are various tools to do this. One option is udl, which is available both as a IIGS shell utility and as C code that can be built and used on modern systems.

In addition to converting the line endings, you will also have to set the files to the appropriate file types before building ORCA/C on a IIGS. The included settypes script (for use under the ORCA shell) does this for the sources to the ORCA/C compiler itself, although it does not currently cover the test cases and headers.