mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Added four pattern memory test routine that is done at startup.
...added filli - "fill integer" support routine.
This commit is contained in:
parent
8f64d25d15
commit
a301c9d5d4
2 changed files with 4 additions and 2 deletions
|
|
@ -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_ */
|
||||
|
|
|
|||
|
|
@ -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_ */
|
||||
|
|
|
|||
Loading…
Reference in a new issue