aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@cs.berkeley.edu>2015-09-08 15:03:03 -0700
committerAndrew Waterman <waterman@cs.berkeley.edu>2015-09-08 15:03:03 -0700
commit1063a09757908d6b2e5712231e3690f380e4a080 (patch)
tree1bf39d9f2ca44d688a367e04242f2200b9e45b07
parent784e9891af88db221b57bdffbea74d1c6bf99971 (diff)
downloadspike-1063a09757908d6b2e5712231e3690f380e4a080.zip
spike-1063a09757908d6b2e5712231e3690f380e4a080.tar.gz
spike-1063a09757908d6b2e5712231e3690f380e4a080.tar.bz2
Refer to LICENSE in some newer source files
-rw-r--r--riscv/extension.cc2
-rw-r--r--riscv/extension.h2
-rw-r--r--riscv/extensions.cc2
-rw-r--r--riscv/insn_template.h2
-rw-r--r--riscv/mulhi.h2
-rw-r--r--riscv/regnames.cc2
-rw-r--r--riscv/rocc.cc2
-rw-r--r--riscv/trap.cc2
8 files changed, 16 insertions, 0 deletions
diff --git a/riscv/extension.cc b/riscv/extension.cc
index 0977139..00cd24f 100644
--- a/riscv/extension.cc
+++ b/riscv/extension.cc
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#include "extension.h"
#include "trap.h"
diff --git a/riscv/extension.h b/riscv/extension.h
index f73a5a8..d1e847d 100644
--- a/riscv/extension.h
+++ b/riscv/extension.h
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#ifndef _RISCV_COPROCESSOR_H
#define _RISCV_COPROCESSOR_H
diff --git a/riscv/extensions.cc b/riscv/extensions.cc
index 315621f..d1690c4 100644
--- a/riscv/extensions.cc
+++ b/riscv/extensions.cc
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#include "extension.h"
#include <string>
#include <map>
diff --git a/riscv/insn_template.h b/riscv/insn_template.h
index 56a9c7f..1a0fd2e 100644
--- a/riscv/insn_template.h
+++ b/riscv/insn_template.h
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#include "mmu.h"
#include "mulhi.h"
#include "softfloat.h"
diff --git a/riscv/mulhi.h b/riscv/mulhi.h
index f0a5d7b..bb4a484 100644
--- a/riscv/mulhi.h
+++ b/riscv/mulhi.h
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#ifndef _RISCV_MULHI_H
#define _RISCV_MULHI_H
diff --git a/riscv/regnames.cc b/riscv/regnames.cc
index 5a696b3..c574345 100644
--- a/riscv/regnames.cc
+++ b/riscv/regnames.cc
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#include "disasm.h"
const char* xpr_name[] = {
diff --git a/riscv/rocc.cc b/riscv/rocc.cc
index 7988c01..db03e37 100644
--- a/riscv/rocc.cc
+++ b/riscv/rocc.cc
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#include "rocc.h"
#include "trap.h"
#include <cstdlib>
diff --git a/riscv/trap.cc b/riscv/trap.cc
index e1346e7..5add05d 100644
--- a/riscv/trap.cc
+++ b/riscv/trap.cc
@@ -1,3 +1,5 @@
+// See LICENSE for license details.
+
#include "trap.h"
#include "processor.h"
#include <cstdio>