Initial version

This commit is contained in:
Yorick Barbanneau 2021-10-11 22:27:00 +02:00
commit 6f405265a5
102 changed files with 14486 additions and 0 deletions

18
code/userprog/progtest.h Normal file
View file

@ -0,0 +1,18 @@
// 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);
#endif // PROGTEST_H