1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Added four pattern memory test routine that is done at startup.

...added filli - "fill integer" support routine.
This commit is contained in:
David Greenman 1994-01-31 23:48:23 +00:00
parent 8f64d25d15
commit a301c9d5d4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1056
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,7 @@
* Functions to provide access to special i386 instructions. * Functions to provide access to special i386 instructions.
* XXX - bezillions more are defined in locore.s but are not declared anywhere. * XXX - bezillions more are defined in locore.s but are not declared anywhere.
* *
* $Id: cpufunc.h,v 1.7 1993/12/21 21:27:04 davidg Exp $ * $Id: cpufunc.h,v 1.8 1994/01/31 04:18:45 davidg Exp $
*/ */
#ifndef _MACHINE_CPUFUNC_H_ #ifndef _MACHINE_CPUFUNC_H_
@ -233,5 +233,6 @@ extern void outsb(int /*u_short*/, void *, size_t);
extern void outsw(int /*u_short*/, void *, size_t); extern void outsw(int /*u_short*/, void *, size_t);
extern void insw(int /*u_short*/, void *, size_t); extern void insw(int /*u_short*/, void *, size_t);
extern void fillw(int /*u_short*/, void *, size_t); extern void fillw(int /*u_short*/, void *, size_t);
extern void filli(int, void *, size_t);
#endif /* _MACHINE_CPUFUNC_H_ */ #endif /* _MACHINE_CPUFUNC_H_ */

View File

@ -2,7 +2,7 @@
* Functions to provide access to special i386 instructions. * Functions to provide access to special i386 instructions.
* XXX - bezillions more are defined in locore.s but are not declared anywhere. * XXX - bezillions more are defined in locore.s but are not declared anywhere.
* *
* $Id: cpufunc.h,v 1.7 1993/12/21 21:27:04 davidg Exp $ * $Id: cpufunc.h,v 1.8 1994/01/31 04:18:45 davidg Exp $
*/ */
#ifndef _MACHINE_CPUFUNC_H_ #ifndef _MACHINE_CPUFUNC_H_
@ -233,5 +233,6 @@ extern void outsb(int /*u_short*/, void *, size_t);
extern void outsw(int /*u_short*/, void *, size_t); extern void outsw(int /*u_short*/, void *, size_t);
extern void insw(int /*u_short*/, void *, size_t); extern void insw(int /*u_short*/, void *, size_t);
extern void fillw(int /*u_short*/, void *, size_t); extern void fillw(int /*u_short*/, void *, size_t);
extern void filli(int, void *, size_t);
#endif /* _MACHINE_CPUFUNC_H_ */ #endif /* _MACHINE_CPUFUNC_H_ */