assembler/bdw: Add gen8_instruction from mesa

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
Damien Lespiau
2013-01-30 17:19:57 +00:00
committed by Ben Widawsky
parent f57f55e4da
commit c3b36592af
5 changed files with 681 additions and 2 deletions
+2 -2
View File
@@ -105,7 +105,7 @@ static void usage(void)
fprintf(stderr, "\t-e, --export {exportfile} Export label file\n");
fprintf(stderr, "\t-l, --input_list {entrytablefile} Input entry_table_list file\n");
fprintf(stderr, "\t-o, --output {outputfile} Specify output file\n");
fprintf(stderr, "\t-g, --gen <4|5|6|7> Specify GPU generation\n");
fprintf(stderr, "\t-g, --gen <4|5|6|7|8> Specify GPU generation\n");
}
static int hash(char *key)
@@ -319,7 +319,7 @@ int main(int argc, char **argv)
}
}
if (gen_level < 40 || gen_level > 75) {
if (gen_level < 40 || gen_level > 80) {
usage();
exit(1);
}