1
0
Fork 0

add LICENSE

This commit is contained in:
Yunsup Lee 2014-09-12 10:15:04 -07:00
parent 2367b7beb5
commit 1cfd9f5a0e
18 changed files with 76 additions and 5 deletions

24
LICENSE Normal file
View File

@ -0,0 +1,24 @@
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.

View File

@ -1,3 +1,19 @@
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

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_emulator.h"
#include "emulator.h"
#include "mm.h"

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _HTIF_EMULATOR_H
#define _HTIF_EMULATOR_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "mm.h"
#include <iostream>
#include <fstream>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef MM_EMULATOR_H
#define MM_EMULATOR_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "mm_dramsim2.h"
#include "mm.h"
#include <DRAMSim.h>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _MM_EMULATOR_DRAMSIM2_H
#define _MM_EMULATOR_DRAMSIM2_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_emulator.h"
#include "mm.h"
#include "mm_dramsim2.h"

View File

@ -1,9 +1,11 @@
#!/usr/bin/env python
#! /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
# This is based off of reference-chip/vlsi/src/vlsi_mem_gen
use_latches = 1

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
package rocketchip
import Chisel._

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
package rocketchip
import Chisel._

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
package rocketchip
import Chisel._

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
package rocketchip
import Chisel._

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
package rocketchip
import Chisel._

View File

@ -1,4 +1,7 @@
#!/usr/bin/env python
#! /usr/bin/env python
# See LICENSE for license details.
import sys
import math

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
`define ceilLog2(x) ( \
(x) > 2**30 ? 31 : \
(x) > 2**29 ? 30 : \

View File

@ -1,4 +1,4 @@
// Test harness for Rocket RISC-V Processor
// See LICENSE for license details.
extern "A" void htif_init
(