20 lines
669 B
C
20 lines
669 B
C
// progtest.h
|
|
// Declarations for test routines for demonstrating that Nachos can load a
|
|
// user program and execute it.
|
|
//
|
|
// Also, routines for testing the Console hardware device.
|
|
//
|
|
// Copyright (c) 1992-1993 The Regents of the University of California.
|
|
// All rights reserved. See copyright.h for copyright notice and limitation
|
|
// of liability and disclaimer of warranty provisions.
|
|
|
|
#ifndef PROGTEST_H
|
|
#define PROGTEST_H
|
|
|
|
extern void StartProcess (char *filename);
|
|
|
|
extern void ConsoleTest (const char *in, const char *out);
|
|
#ifdef CHANGED
|
|
extern void ConsoleDriverTest (const char *in, const char *out);
|
|
#endif //CHANGED
|
|
#endif // PROGTEST_H
|