mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Added headers to files.
This commit is contained in:
parent
9c39371657
commit
674d008f23
@ -1,4 +1,30 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
###########################################
|
||||||
|
## flash-sd.sh
|
||||||
|
##
|
||||||
|
## Written: Jacob Pease jacobpease@protonmail.com
|
||||||
|
## Created: August 22, 2023
|
||||||
|
##
|
||||||
|
## Purpose: A script to flash an sd card with a bootable linux image.
|
||||||
|
##
|
||||||
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
|
## https://github.com/openhwgroup/cvw
|
||||||
|
##
|
||||||
|
## Copyright (C) 2021-24 Harvey Mudd College & Oklahoma State University
|
||||||
|
##
|
||||||
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
|
##
|
||||||
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
|
## may obtain a copy of the License at
|
||||||
|
##
|
||||||
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
|
##
|
||||||
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
|
## 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.
|
||||||
|
################################################################################################
|
||||||
|
|
||||||
# Exit on any error (return code != 0)
|
# Exit on any error (return code != 0)
|
||||||
# set -e
|
# set -e
|
||||||
|
@ -1,4 +1,32 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
###########################################
|
||||||
|
## write-bytes.sh
|
||||||
|
##
|
||||||
|
## Written: Jacob Pease jacobpease@protonmail.com
|
||||||
|
## Created: November 2nd, 2024
|
||||||
|
## Modified:
|
||||||
|
##
|
||||||
|
## Purpose: Write a sequence of bytes from text file to an output file and a flash card.
|
||||||
|
##
|
||||||
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
|
## https://github.com/openhwgroup/cvw
|
||||||
|
##
|
||||||
|
## Copyright (C) 2021-24 Harvey Mudd College & Oklahoma State University
|
||||||
|
##
|
||||||
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
|
##
|
||||||
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
|
## may obtain a copy of the License at
|
||||||
|
##
|
||||||
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
|
##
|
||||||
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
|
## 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.
|
||||||
|
################################################################################################
|
||||||
|
|
||||||
|
|
||||||
# This file writes a bunch of bytes to the flash card based on a text
|
# This file writes a bunch of bytes to the flash card based on a text
|
||||||
# file input with bytes written in hexadecimal.
|
# file input with bytes written in hexadecimal.
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
///////////////////////////////////////////
|
///////////////////////////////////////////
|
||||||
// spi_apb.sv
|
// spi_apb.sv
|
||||||
//
|
//
|
||||||
// Written: Naiche Whyte-Aguayo nwhyteaguayo@g.hmc.edu 11/16/2022
|
// Written: Naiche Whyte-Aguayo nwhyteaguayo@g.hmc.edu
|
||||||
|
// Jacob Pease jacobpease@protonmail.com (October 29th, 2024)
|
||||||
|
// Created: November 16th, 2022
|
||||||
//
|
//
|
||||||
// Purpose: SPI peripheral
|
// Purpose: SPI peripheral
|
||||||
//
|
//
|
||||||
@ -13,7 +15,7 @@
|
|||||||
//
|
//
|
||||||
// A component of the Wally configurable RISC-V project.
|
// A component of the Wally configurable RISC-V project.
|
||||||
//
|
//
|
||||||
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
// Copyright (C) 2021-24 Harvey Mudd College & Oklahoma State University
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
//
|
//
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
///////////////////////////////////////////
|
///////////////////////////////////////////
|
||||||
// spi_controller.sv
|
// spi_controller.sv
|
||||||
//
|
//
|
||||||
// Written: jacobpease@protonmail.com
|
// Written: Jacob Pease jacobpease@protonmail.com
|
||||||
// Created: October 28th, 2024
|
// Created: October 28th, 2024
|
||||||
// Modified:
|
|
||||||
//
|
//
|
||||||
// Purpose: Controller logic for SPI
|
// Purpose: Controller logic for SPI
|
||||||
//
|
//
|
||||||
@ -12,7 +11,7 @@
|
|||||||
// A component of the CORE-V-WALLY configurable RISC-V project.
|
// A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
// https://github.com/openhwgroup/cvw
|
// https://github.com/openhwgroup/cvw
|
||||||
//
|
//
|
||||||
// Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
// Copyright (C) 2021-24 Harvey Mudd College & Oklahoma State University
|
||||||
//
|
//
|
||||||
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
// SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user