hw4 test
This commit is contained in:
@@ -172,13 +172,19 @@ ConsoleOutput::PutChar(char ch)
|
||||
kernel->interrupt->Schedule(this, ConsoleTime, ConsoleWriteInt);
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// ConsoleOutput::PutInt()
|
||||
// Write a int to the simulated display, schedule an interrupt
|
||||
// to occur in the future, and return.
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
void
|
||||
ConsoleOutput::PutInt(int value)
|
||||
{
|
||||
ASSERT(putBusy == FALSE);
|
||||
char *printStr = (char*)malloc(sizeof(char)*15);
|
||||
char * printStr = (char*)malloc(sizeof(char) * 15);
|
||||
sprintf(printStr, "%d\n", value);
|
||||
WriteFile(writeFileNo, printStr, strlen(printStr)*sizeof(char));
|
||||
WriteFile(writeFileNo, printStr, strlen(printStr) * sizeof(char));
|
||||
putBusy = TRUE;
|
||||
kernel->interrupt->Schedule(this, ConsoleTime, ConsoleWriteInt);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user