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

Subversion Repositories aemb

[/] [aemb/] [trunk/] [sw/] [cc/] [simboard.hh] - Diff between revs 154 and 191

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 191
/* $Id: simboard.hh,v 1.7 2008-04-28 20:40:40 sybreon Exp $
/* $Id: simboard.hh,v 1.7 2008-04-28 20:40:40 sybreon Exp $
**
**
** AEMB Function Verification C++ Testbench
** AEMB Function Verification C++ Testbench
** Copyright (C) 2004-2008 Shawn Tan 
** Copyright (C) 2004-2008 Shawn Tan 
**
**
** This file is part of AEMB.
** This file is part of AEMB.
**
**
** AEMB is free software: you can redistribute it and/or modify it
** AEMB is free software: you can redistribute it and/or modify it
** under the terms of the GNU General Public License as published by
** under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
** (at your option) any later version.
**
**
** AEMB is distributed in the hope that it will be useful, but WITHOUT
** AEMB is distributed in the hope that it will be useful, but WITHOUT
** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
** or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
** or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
** License for more details.
** License for more details.
**
**
** You should have received a copy of the GNU General Public License
** You should have received a copy of the GNU General Public License
** along with AEMB.  If not, see .
** along with AEMB.  If not, see .
*/
*/
#include "aemb/msr.hh"
#include "aemb/msr.hh"
#include 
#include 
#include 
#include 
#ifndef SIMBOARD_HH
#ifndef SIMBOARD_HH
#define SIMBOARD_HH
#define SIMBOARD_HH
#define CODE_FAIL 0xDEADBEEF
#define CODE_FAIL 0xDEADBEEF
#define CODE_PASS 0xCAFEF00D
#define CODE_PASS 0xCAFEF00D
#ifdef __cplusplus
#ifdef __cplusplus
extern "C" {
extern "C" {
#endif
#endif
/*
/*
I/O FUNCTIONS
I/O FUNCTIONS
*/
*/
void outbyte(char c)
void outbyte(char c)
{
{
  volatile char *COUT = (char *) 0xFFFFFFC0;
  volatile char *COUT = (char *) 0xFFFFFFC0;
  *COUT = c;
  *COUT = c;
}
}
char inbyte()
char inbyte()
{
{
  return 0;
  return 0;
}
}
#ifdef __cplusplus
#ifdef __cplusplus
}
}
#endif
#endif
#endif
#endif
/*
/*
$Log: not supported by cvs2svn $
$Log: not supported by cvs2svn $
Revision 1.6  2008/04/27 16:35:16  sybreon
Revision 1.6  2008/04/27 16:35:16  sybreon
Minor code cleanup.
Minor code cleanup.
Revision 1.5  2008/04/27 16:04:42  sybreon
Revision 1.5  2008/04/27 16:04:42  sybreon
Minor cosmetic changes.
Minor cosmetic changes.
Revision 1.4  2008/04/26 19:32:00  sybreon
Revision 1.4  2008/04/26 19:32:00  sybreon
Made headers C compatible.
Made headers C compatible.
Revision 1.3  2008/04/26 18:07:19  sybreon
Revision 1.3  2008/04/26 18:07:19  sybreon
Minor cosmetic changes.
Minor cosmetic changes.
Revision 1.2  2008/04/21 12:13:12  sybreon
Revision 1.2  2008/04/21 12:13:12  sybreon
Passes arithmetic tests with single thread.
Passes arithmetic tests with single thread.
Revision 1.1  2008/04/11 15:32:28  sybreon
Revision 1.1  2008/04/11 15:32:28  sybreon
initial checkin
initial checkin
*/
*/
 
 

powered by: WebSVN 2.1.0

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