Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
osek-v
osek-v
Commits
1cfd9f5a
Commit
1cfd9f5a
authored
Sep 12, 2014
by
Yunsup Lee
Browse files
add LICENSE
parent
2367b7be
Changes
18
Hide whitespace changes
Inline
Side-by-side
LICENSE
0 → 100644
View file @
1cfd9f5a
Copyright (c) 2012-2014, The Regents of the University of California
(Regents). All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the Regents nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING
OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
README.md
View file @
1cfd9f5a
Rocket Chip Generator
=====================
This repository contains the Rocket chip generator necessary to instantiate
the RISC-V Rocket Core.
Contributors
------------
Scott Beamer
Henry Cook
Yunsup Lee
Stephen Twigg
Huy Vo
Andrew Waterman
_Quick and dirty instructions:_
Checkout The Code
...
...
csrc/emulator.cc
View file @
1cfd9f5a
// See LICENSE for license details.
#include
"htif_emulator.h"
#include
"emulator.h"
#include
"mm.h"
...
...
csrc/htif_emulator.h
View file @
1cfd9f5a
// See LICENSE for license details.
#ifndef _HTIF_EMULATOR_H
#define _HTIF_EMULATOR_H
...
...
csrc/mm.cc
View file @
1cfd9f5a
// See LICENSE for license details.
#include
"mm.h"
#include
<iostream>
#include
<fstream>
...
...
csrc/mm.h
View file @
1cfd9f5a
// See LICENSE for license details.
#ifndef MM_EMULATOR_H
#define MM_EMULATOR_H
...
...
csrc/mm_dramsim2.cc
View file @
1cfd9f5a
// See LICENSE for license details.
#include
"mm_dramsim2.h"
#include
"mm.h"
#include
<DRAMSim.h>
...
...
csrc/mm_dramsim2.h
View file @
1cfd9f5a
// See LICENSE for license details.
#ifndef _MM_EMULATOR_DRAMSIM2_H
#define _MM_EMULATOR_DRAMSIM2_H
...
...
csrc/vcs_main.cc
View file @
1cfd9f5a
// See LICENSE for license details.
#include
"htif_emulator.h"
#include
"mm.h"
#include
"mm_dramsim2.h"
...
...
fsim/fpga_mem_gen
View file @
1cfd9f5a
#!/usr/bin/env python
import
sys
import
math
#! /usr/bin/env python
# See LICENSE for license details.
# This is based off of reference-chip/vlsi/src/vlsi_mem_gen
import
sys
import
math
use_latches
=
1
...
...
src/main/scala/Backends.scala
View file @
1cfd9f5a
// See LICENSE for license details.
package
rocketchip
import
Chisel._
...
...
src/main/scala/PublicConfigs.scala
View file @
1cfd9f5a
// See LICENSE for license details.
package
rocketchip
import
Chisel._
...
...
src/main/scala/RocketChip.scala
View file @
1cfd9f5a
// See LICENSE for license details.
package
rocketchip
import
Chisel._
...
...
src/main/scala/network.scala
View file @
1cfd9f5a
// See LICENSE for license details.
package
rocketchip
import
Chisel._
...
...
src/main/scala/vlsi.scala
View file @
1cfd9f5a
// See LICENSE for license details.
package
rocketchip
import
Chisel._
...
...
vsim/vlsi_mem_gen
View file @
1cfd9f5a
#!/usr/bin/env python
#! /usr/bin/env python
# See LICENSE for license details.
import
sys
import
math
...
...
vsrc/backup_mem.v
View file @
1cfd9f5a
// See LICENSE for license details.
`define
ceilLog2
(
x
)
(
\
(
x
)
>
2
**
30
?
31
:
\
(
x
)
>
2
**
29
?
30
:
\
...
...
vsrc/rocketTestHarness.v
View file @
1cfd9f5a
//
Test harness for Rocket RISC-V Processor
//
See LICENSE for license details.
extern
"A"
void
htif_init
(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment