/*-------------------------------------------------------------------------- ** ** Copyright (c) 2003, Tom Hunter (see license.txt) ** ** Name: device.c ** ** Description: ** Device support for CDC 6600. ** **-------------------------------------------------------------------------- */ /* ** ------------- ** Include Files ** ------------- */ #include #include #include #include "const.h" #include "types.h" #include "proto.h" /* ** ----------------- ** Private Constants ** ----------------- */ /* ** ----------------------- ** Private Macro Functions ** ----------------------- */ /* ** ----------------------------------------- ** Private Typedef and Structure Definitions ** ----------------------------------------- */ /* ** --------------------------- ** Private Function Prototypes ** --------------------------- */ /* ** ---------------- ** Public Variables ** ---------------- */ DevDesc deviceDesc[] = { "MT607", mt607Init, "MT669", mt669Init, "DD6603", dd6603Init, "DD844", dd844Init, "CR405", cr405Init, "LP1612", lp1612Init, "LP501", lp501Init, "LP512", lp512Init, "CO6612", consoleInit, "MUX6676", mux6676Init, }; u8 deviceCount = sizeof(deviceDesc) / sizeof(deviceDesc[0]); /* ** ----------------- ** Private Variables ** ----------------- */ /* **-------------------------------------------------------------------------- ** ** Public Functions ** **-------------------------------------------------------------------------- */ /*--------------------------- End Of File ------------------------------*/