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

Subversion Repositories eco32

[/] [eco32/] [trunk/] [hwtests/] [dsptest/] [main.c] - Rev 262

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

/*
 * main.c -- the main program
 */
 
 
#include "common.h"
#include "lib.h"
#include "start.h"
 
 
int main(void) {
  int i, j;
  unsigned int attr, ch;
  unsigned int *p;
 
  for (i = 0; i < 16; i++) {
    for (j = 0; j < 16; j++) {
      attr = i * 16 + j;
      ch = (attr << 8) | 0x23;
      p = (unsigned int *) 0xF0100000;
      p += 128 * i + 2 * j;
      *p = ch;
    }
  }
  while (1) ;
  return 0;
}
 

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.