--- trunk/src/cpus/generate_head.c 2007/10/08 16:20:40 30 +++ trunk/src/cpus/generate_head.c 2007/10/08 16:22:56 44 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2006 Anders Gavare. All rights reserved. + * Copyright (C) 2005-2007 Anders Gavare. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * - * $Id: generate_head.c,v 1.23 2006/08/11 17:43:30 debug Exp $ + * $Id: generate_head.c,v 1.30 2007/06/28 13:36:47 debug Exp $ */ #include @@ -143,11 +143,8 @@ printf("\tcpu->cd.%s.next_ic --;\n", a); printf("}\n\n"); - /* Ugly special hacks for Transputer and SH[34]: */ - if (strcasecmp(argv[1], "transputer") == 0) { - printf("static struct %s_instr_call nothing_call = { " - "instr(nothing), {0} };\n", a); - } else if (strcasecmp(argv[1], "sh") == 0) { + /* Ugly special hacks for SH[34]: */ + if (strcasecmp(argv[1], "sh") == 0) { printf("static struct %s_instr_call nothing_call = { " "instr(nothing), {0,0} };\n", a); } else {