Renamed wally-config to config in many comments

This commit is contained in:
David Harris 2023-10-16 13:49:09 -07:00
parent 1e2f1089ca
commit b39ba7b4f8
13 changed files with 13 additions and 16 deletions

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:
@ -25,9 +25,6 @@
// and limitations under the License.
////////////////////////////////////////////////////////////////////////////////////////////////
// include shared configuration
// `include "wally-shared.vh"
`include "BranchPredictorType.vh"
localparam FPGA = 0;

View File

@ -1,5 +1,5 @@
//////////////////////////////////////////
// wally-config.vh
// config.vh
//
// Written: David_Harris@hmc.edu 4 January 2021
// Modified:

View File

@ -16,7 +16,7 @@ done
echo "All lints run with no errors or warnings"
# --lint-only just runs lint rather than trying to compile and simulate
# -I points to the include directory where files such as `include wally-config.vh are found
# -I points to the include directory where files such as `include config.vh are found
# For more exhaustive (and sometimes spurious) warnings, add --Wall to the Verilator command
# Unfortunately, this produces a bunch of UNUSED and UNDRIVEN signal warnings in blocks that are configured to not exist.

View File

@ -24,7 +24,7 @@
// License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
// either express or implied. See the License for the specific language governing permissions
// and limitations under the License.
////////////////////////////////////////////////////////////////////////////////////////////////`include "wally-config.vh"
////////////////////////////////////////////////////////////////////////////////////////////////
module divshiftcalc import cvw::*; #(parameter cvw_t P) (
input logic [P.DIVb:0] DivQm, // divsqrt significand

View File

@ -27,7 +27,7 @@
// and limitations under the License.
////////////////////////////////////////////////////////////////////////////////////////////////
`include "wally-config.vh"
`include "config.vh"
// This comparator is best
module comparator_dc_flip #(parameter WIDTH=64) (

View File

@ -26,7 +26,7 @@
// OR OTHER DEALINGS IN THE SOFTWARE.
////////////////////////////////////////////////////////////////////////////////////////////////
`include "wally-config.vh"
`include "wconfig.vh"
module sd_top_tb();