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

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gdb/] [sim-plugins/] [control/] [control.c] - Blame information for rev 27

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 jlechner
/* SCARTS processor control module code for the GNU simulator.
2
   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
3
   Free Software Foundation, Inc.
4
   Contributed by Martin Walter <mwalter@opencores.org>
5
 
6
   This file is part of the GNU simulators.
7
 
8
   This program is free software; you can redistribute it and/or modify
9
   it under the terms of the GNU General Public License as published by
10
   the Free Software Foundation; either version 3 of the License, or
11
   (at your option) any later version.
12
 
13
   This program is distributed in the hope that it will be useful,
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
   GNU General Public License for more details.
17
 
18
   You should have received a copy of the GNU General Public License
19
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
 
21
 
22
#include <string.h>
23
#include "control.h"
24
 
25
/* Macros for machine type. */
26
#if defined __SCARTS_16__
27
  #define SCARTS_ADDR_CTYPE  uint16_t
28
#elif defined __SCARTS_32__
29
  #define SCARTS_ADDR_CTYPE  uint32_t
30
#else
31
  #error "Unsupported target machine type"
32
#endif
33
 
34
static control_mem_t mem;
35
 
36
uint8_t*
37
get_mem (void)
38
{
39
  return mem.raw;
40
}
41
 
42
void
43
get_mem_map (SCARTS_ADDR_CTYPE* start, SCARTS_ADDR_CTYPE* size)
44
{
45
  *start = PROC_CTRL_BADDR;
46
  *size  = PROC_CTRL_SIZE;
47
}
48
 
49
uint8_t*
50
get_status (void)
51
{
52
  return &mem.regfile.STATUS;
53
}
54
 
55
int
56
mem_read (SCARTS_ADDR_CTYPE offset, uint8_t *value)
57
{
58
  if (offset >= PROC_CTRL_SIZE)
59
    return 0;
60
 
61
  *value = mem.raw[offset];
62
  return 1;
63
}
64
 
65
int
66
mem_write (SCARTS_ADDR_CTYPE offset, uint8_t value)
67
{
68
  if (offset >= PROC_CTRL_SIZE)
69
    return 0;
70
 
71
  mem.raw[offset] = value;
72
  return 1;
73
}
74
 
75
void
76
reset (void)
77
{
78
  memset (mem.raw, 0, PROC_CTRL_SIZE);
79
}
80
 
81
void
82
tick (SCARTS_ADDR_CTYPE pc)
83
{
84
  return;
85
}
86
 

powered by: WebSVN 2.1.0

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