OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

[/] [eco32/] [trunk/] [sim/] [output.c] - Rev 8

Go to most recent revision | Compare with Previous | Blame | View Log

/*
 * output.c -- output to file on host system
 */
 
 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
#include "common.h"
#include "console.h"
#include "error.h"
#include "output.h"
 
 
static FILE *outputFile;
 
 
Word outputRead(Word addr) {
  if (outputFile == NULL) {
    /* output device not installed */
    error("output device not installed");
  }
  /* output device always returns 0 on read */
  return 0;
}
 
 
void outputWrite(Word addr, Word data) {
  char c;
 
  if (outputFile == NULL) {
    /* output device not installed */
    error("output device not installed");
  }
  c = data;
  if (fwrite(&c, 1, 1, outputFile) != 1) {
    error("write error on output device");
  }
}
 
 
void outputReset(void) {
  if (outputFile == NULL) {
    /* output device not installed */
    return;
  }
  cPrintf("Resetting output device...\n");
  fseek(outputFile, 0, SEEK_SET);
}
 
 
void outputInit(char *outputFileName) {
  if (outputFileName == NULL) {
    /* do not install output device */
    outputFile = NULL;
  } else {
    /* try to install output device */
    outputFile = fopen(outputFileName, "wb");
    if (outputFile == NULL) {
      error("cannot open output device file '%s'", outputFileName);
    }
    setvbuf(outputFile, NULL, _IONBF, 0);
  }
  outputReset();
}
 
 
void outputExit(void) {
  if (outputFile == NULL) {
    /* output device not installed */
    return;
  }
  fclose(outputFile);
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.