Go to file
Stephen Heumann 9ff3407c60 Avoid producing invalid string literals in #pragma expand output.
Previously, the characters ", /, and ? within string literals were not escaped in #pragma expand output, which could result in them being erroneously interpreted as ending the string literal, starting an escape sequence, or being part of a trigraph (respectively). Also, escape sequences were output in hexadecimal format. Since there is no length limit on hexadecimal escape sequences, this could result in subsequent characters in the string being interpreted as part of the escape sequence.

This fixes the issues by escaping the characters ", /, and ?, and by using three-digit octal escape sequences rather than hexadecimal ones.
2018-09-01 16:11:18 -05:00
obj
ORCACDefs Small tweaks to <stdarg.h>. 2018-08-28 18:58:27 -05:00
Tests
Asm.pas
backup
C.Update.ReadMe Update release notes to cover recent changes. 2018-03-17 22:54:53 -05:00
cc.notes Update release notes to cover my recent changes. 2018-04-10 23:36:18 -05:00
CC.pas Allow declarations in first clause of for loop (C99). 2018-04-01 16:48:11 -05:00
CC.rez
CC.rez2
CCommon.asm
CCommon.macros
CCommon.pas TermError doesn't always initalize the error message. commonly seen with compile +T. 2018-03-27 20:19:39 -04:00
CGC.asm
CGC.macros
CGC.pas
CGI.Comments
CGI.Debug
CGI.pas
count
DAG2.pas
DAG.pas Avoid errors from attempting common subexpression elimination on the left subexpression of the comma operator. 2018-03-31 20:10:50 -05:00
Debugger.md merge in updates from the ORCA Debugger disk. 2018-03-25 00:33:31 -04:00
Exp.macros
Expression.asm
Expression.pas Fix some cases where decay of array types to pointer types was not handled correctly. 2018-03-29 19:41:32 -05:00
Gen.pas Fix code generation for certain cases where addresses are stored to local variables that don't fit in the direct page. 2018-03-31 15:45:05 -05:00
Header2.pas
Header.pas Add a new flag to control whether mixed declarations are allowed and C99 scope rules are used. 2018-04-01 14:14:18 -05:00
LICENSE
linkit Squashed commit of the following: 2018-03-23 21:51:27 -04:00
linkit2
make Squashed commit of the following: 2018-03-23 21:51:27 -04:00
make2
MM.asm
MM.macros
MM.pas
Native2.pas
Native.asm
Native.macros
Native.pas
ObjOut2.asm
ObjOut2.pas
ObjOut.asm
ObjOut.macros
ObjOut.pas
Parser.pas Fix invalid static initialization of bitfields occupying three bytes. 2018-04-11 23:42:04 -05:00
Printf.pas Squashed commit of the following: 2018-03-23 21:51:27 -04:00
README.md
Scanner.asm
Scanner.debug
Scanner.macros
Scanner.pas Avoid producing invalid string literals in #pragma expand output. 2018-09-01 16:11:18 -05:00
settypes
smake
Symbol.asm
Symbol.macros
Symbol.pas Correctly handle tentative struct/union and array definitions that are not completed. 2018-03-06 22:53:52 -06:00
Symbol.Print
Table.asm
Table.macros
Table.pas

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.