xcc
xcc is a small, statically-typed, ObjC-like language with classes, single inheritance, protocols and automatic reference counting. It compiles through one architecture-neutral SSA intermediate representation to seven live backends, from an 8-bit banked 6502 to 64-bit macOS, Linux and Windows, and to WebAssembly.
The same source and the same standard library run on all of them. On a machine with bank-switched RAM, banking is a first-class resource: programs spread code and data across paged windows and grow beyond normal RAM limits, and the compiler decides what lives where. On other machines the same program is an ordinary native executable.
The compiler is called xcc, and it behaves like a C compiler:
xcc -o hello hello.xc # a native binary for THIS machinexcc -A 6502 -o hello.xex hello.xc # the same source, for the banked 6502A simple program needs nothing more. No flag selects the host, no environment variable points at the libraries, and the standard library is linked automatically.
Targets
Section titled “Targets”With no -A, xcc builds for the machine it is running on. Pass -A to cross-compile.
-A | Target | Output | Run with |
|---|---|---|---|
| (none) | the host you are on | native executable | run it |
arm64 | macOS / Linux on 64-bit ARM | Mach-O / ELF | run it |
x86_64 | Linux (musl) | ELF | run it |
win64 | Windows | PE/COFF .exe | run it, or Wine |
arm9 | AArch32, the XTOS loader | ELF, or a shared library (--emit-lib) | the board, or QEMU |
m68k (68000) / 68030 | Motorola 68000/68030 | GEMDOS .prg/.tos | xcc-sim-68k |
wasm32 | WebAssembly | .wasm / WAT | a WASM runtime |
6502 | banked xt6502, a custom FPGA 6502 with a 4 KB hidden hardware stack and SP-relative addressing | banked 6502 executable (.xex) | xcc-sim-6502 |
Every target passes the full fixture corpus. The native targets assemble and link
in-house: xcc carries its own assemblers, linkers and Mach-O / ELF / PE writers, so
a build needs no system toolchain.
The 6502 path has two more pieces: xcc-as, a two-pass assembler that emits XEX with
RUNAD/INITAD and banked preload, and xcc-sim-6502, a headless simulator that runs
.xex files with the memory-model semantics the code generator targets. The m68k path
has its own simulator, xcc-sim-68k.
What the language gives you
Section titled “What the language gives you”- Classes with single inheritance from a root
Object, virtual dispatch, andinit/deallocthat chain automatically up the hierarchy, including for a subclass that declares neither. - Protocols, including optional methods. An unimplemented optional method leaves a
null slot, so
&delegate.methoddoubles asrespondsTo. This supports the delegate pattern. - Bound methods (
callback).&obj.methodyields a{receiver, code}value you can store and call later. A plain function widens into the same type, so oneactionfield accepts either. This gives target/action with no protocol and no context pointer. See Bound methods & callbacks. - ARC, with
weak:references that auto-zero when their referent dies. A stored callback never owns its receiver, which keeps a view hierarchy from becoming one large retain cycle. - Typed collections:
Array<String>*,Map<Point>*,Set<String>*. The element type is checked at compile time and erased at run time, so an instantiation adds no code size. See Collections & strings. - Threading on the native targets:
Thread,Mutex,Cond,Sem,AtomicandPool.forRange. ARC refcounts become atomic automatically in any module that spawns a thread. See Threading. - Errors as a checked effect. A function that can fail is marked
throws, and a caller must handle the error or bethrowsitself. See Errors. - Shared libraries.
--emit-libproduces a library carrying its own interface, and#import <Lib>type-checks a client against the real binary. Classes, protocols (with working cross-module dispatch), structs, enums,weak:fields, bound methods and C types re-exported from other libraries all cross the boundary. See Modules & shared libraries. - Fixed-width types:
i8…u64,float,double,bool,pointer. There is no C-style promotion toint, so same-width arithmetic stays at that width. - Inline assembly on every target, with byte-extract operators and
clobbers.
These pages
Section titled “These pages”- Install: where the toolchain goes and how it finds its own libraries. Start here.
- Language reference: syntax, types, classes, protocols, ARC, collections, threading, modules, inline assembly. Each page carries a worked example that compiles and runs.
- Standard library: the classes shipped with the compiler, with method signatures and example usage.
- Compiler usage: CLI flags, optimisation levels, allocator and memory-model selection, banking, and linker scripts.
- Future work: what’s next, and what’s known to be incomplete.
Prebuilt binaries for macOS, Linux and Windows are on the Downloads page.