/* * CPU-version specific code * * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2006-2009 PetaLogix * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details.
*/
/* Denormalised to get the fpga family string */ for (i = 0; family_string_lookup[i].s != NULL; i++) { if (cpuinfo.fpga_family_code == family_string_lookup[i].k) {
fpga_family = (char *)family_string_lookup[i].s; break;
}
}
/* Denormalised to get the hw version string */ for (i = 0; cpu_ver_lookup[i].s != NULL; i++) { if (cpuinfo.ver_code == cpu_ver_lookup[i].k) {
cpu_ver = (char *)cpu_ver_lookup[i].s; break;
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.