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

...added filli - "fill integer" support routine.
This commit is contained in:
dg 1994-01-31 23:48:23 +00:00
parent edea92cbab
commit 40ec390772
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,7 @@
* Functions to provide access to special i386 instructions.
* 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_
@ -233,5 +233,6 @@ extern void outsb(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 fillw(int /*u_short*/, void *, size_t);
extern void filli(int, void *, size_t);
#endif /* _MACHINE_CPUFUNC_H_ */

View File

@ -2,7 +2,7 @@
* Functions to provide access to special i386 instructions.
* 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_
@ -233,5 +233,6 @@ extern void outsb(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 fillw(int /*u_short*/, void *, size_t);
extern void filli(int, void *, size_t);
#endif /* _MACHINE_CPUFUNC_H_ */