AMIGA_68060 flag in cpu.h and genassym.c.
This commit is contained in:
parent
6b1f642521
commit
ed24bc5ba8
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: genassym.c,v 1.23 1996/02/02 19:42:08 mycroft Exp $ */
|
||||
/* $NetBSD: genassym.c,v 1.24 1996/03/15 19:47:45 is Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1982, 1990 The Regents of the University of California.
|
||||
|
@ -158,6 +158,7 @@ main()
|
|||
printf("#define\tAMIGA_68020 %d\n", AMIGA_68020);
|
||||
printf("#define\tAMIGA_68030 %d\n", AMIGA_68030);
|
||||
printf("#define\tAMIGA_68040 %d\n", AMIGA_68040);
|
||||
printf("#define\tAMIGA_68060 %d\n", AMIGA_68060);
|
||||
printf("#define\tISR_FORW %d\n", &isr->isr_forw);
|
||||
printf("#define\tISR_INTR %d\n", &isr->isr_intr);
|
||||
printf("#define\tISR_ARG %d\n", &isr->isr_arg);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cpu.h,v 1.25 1995/12/21 05:01:48 mycroft Exp $ */
|
||||
/* $NetBSD: cpu.h,v 1.26 1996/03/15 19:47:48 is Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988 University of Utah.
|
||||
|
@ -120,6 +120,7 @@ int want_resched; /* resched() was called */
|
|||
#define AMIGA_68881 (1L<<4)
|
||||
#define AMIGA_68882 (1L<<5)
|
||||
#define AMIGA_FPU40 (1L<<6)
|
||||
#define AMIGA_68060 (1L<<7)
|
||||
|
||||
/* values for fputype */
|
||||
#define FPU_NONE 0
|
||||
|
|
Loading…
Reference in New Issue