6c1ccc5c0d
commit 4265329097538640e9e21202f1b141bcd42a44f3 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Fri Mar 23 21:45:32 2018 -0400 indent to match standard indent. commit 783518fbeb01d2df43ef2083d3341004c05e4e2e Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Fri Mar 23 20:21:15 2018 -0400 clean up the typenames commit 29b627ecf5ca9b8a143761f85a1807a6ca35ddd9 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Fri Mar 23 20:18:04 2018 -0400 enable feature_hh, warn about %n with non-int modifier. commit fc4ac8129e3772c4eda36658e344ec475938369c Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Fri Mar 23 15:13:47 2018 -0400 warn thar %lc, %ls, etc are unsupported. commit 7e6b433ba0552f7e52f0f034d398e9195c764326 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Fri Mar 23 13:36:25 2018 -0400 warn about hh/ll modifier (if not supported) commit 1943c9979d0013f9f38045ec04a962fbf0269f31 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Fri Mar 23 11:42:41 2018 -0400 use error facilities for format errors. commit 7811168f56dca1387055574ba8d32638da2fad96 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Thu Mar 22 15:34:21 2018 -0400 add feature flags to disable c99 enhancements until orca lib is updated. commit c2149cc5953155cfc3c3b4d0483cd25fb946b055 Author: Kelvin Sherlock <ksherlock@gmail.com> Date: Thu Mar 22 08:59:10 2018 -0400 Add printf/scanf format checking [WIP] This parses out the xprintf / xscanf format string and compares it with the function arguments. enabled via #pragma lint 16. |
||
---|---|---|
obj | ||
ORCACDefs | ||
Tests | ||
Asm.pas | ||
backup | ||
C.Update.ReadMe | ||
cc.notes | ||
CC.pas | ||
CC.rez | ||
CC.rez2 | ||
CCommon.asm | ||
CCommon.macros | ||
CCommon.pas | ||
CGC.asm | ||
CGC.macros | ||
CGC.pas | ||
CGI.Comments | ||
CGI.Debug | ||
CGI.pas | ||
count | ||
DAG2.pas | ||
DAG.pas | ||
Exp.macros | ||
Expression.asm | ||
Expression.pas | ||
Gen.pas | ||
Header2.pas | ||
Header.pas | ||
LICENSE | ||
linkit | ||
linkit2 | ||
make | ||
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 | ||
Printf.pas | ||
README.md | ||
Scanner.asm | ||
Scanner.debug | ||
Scanner.macros | ||
Scanner.pas | ||
settypes | ||
smake | ||
Symbol.asm | ||
Symbol.macros | ||
Symbol.pas | ||
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:
-
The modified compiler must compile under the currently released version of ORCA/M and ORCA/Pascal.
-
All samples from the original ORCA/C distribution must compile and execute under the modified compiler, or the sample must be updated, too.
-
The compiler must pass the ORCA/C tset suite, or the test suite must be suitably modified, too.
-
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):
- 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
- Add the following line to the
.git/info/attributes
file, creating it if necessary:
* filter=crtext
- 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.