Deep Blue C
Deep Blue C is a C programming language compiler for Atari 8-bit computers distributed by the Atari Program Exchange (APX). DescriptionDeep Blue C is based on Ron Cain's public domain Small-C compiler, a subset of the C programming language,[1] modified by John Howard Palevich to run on Atari 8-bit hardware. Palevich also wrote Dandy for APX.[2] The syntax supported by Deep Blue C is close to that of ANSI C with significant limitations. The compiler creates Intel 8080 binary code which is executed by an 8080 virtual machine[3] as p-code.[4] The user must supply a source code editor, but included libraries provide LimitationsAs a proper subset of V7 Unix C, Deep Blue C code that does not use Atari 8-bit features can be compiled on other systems with the full language.[4] The following language constructs are not supported:[5]
Other non-standard properties of Deep Blue C:
The p-code that the compiler produces is slower than native binary. It is smaller than binary, however, and faster than Atari BASIC.[4] ReceptionAntic thought that Deep Blue C's use of p-code was acceptable given Atari's hardware limitations. The magazine praised Palevich for publishing the source code, and recommended purchasing it with the compiler for study and customization alongside The C Programming Language.[4] Sample programThis program prints "Hello World!":[6] main() $( printf("Hello World!"); $) References
|