Embedded Systems
cpro0101.txt
Associated article: You've Come a Long Way, Baby
Tags: Parallel Embedded Systems
Published source code accompanying the article by Al Stevens in which he continues his customization of Quincy 2000.
C Programming Column
by Al Stevens
Listing One
// ----- compiler.h
#ifndef COMPILER_H
#define COMPILER_H
#include "Quincy.h"
class Compiler {
public:
enum CompileStatus { idle, preprocessing, compiling, assembling,
linking, buildinglibrary, finished, aborting, aborted };
enum CompileAction { none, execute, ...


