This repository was archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99e0fec
commit 6f3f0cd
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Contributing | ||
Contributors are encouraged to be a [member](https://www.openhwgroup.org/membership/) of the | ||
OpenHW Group. New members are always welcome. | ||
|
||
## Getting Started | ||
The [OpenHW Work Flow](https://github.com/openhwgroup/core-v-docs/blob/master/verif/Common/OpenHWGroup_WorkFlow.pdf) document | ||
is required reading. You will find information about the implementation and usage of the CORE-V verification environments | ||
in the [Verification Strategy](https://github.com/openhwgroup/core-v-docs/blob/master/verif/Common/OpenHWGroup_CORE-V_Verif_Strategy.pdf). | ||
|
||
## The Mechanics | ||
1. From GitHub: [fork](https://help.github.com/articles/fork-a-repo/) the [cv32e40p](https://github.com/openhwgroup/cv32e40p) repository | ||
2. Clone repository: `git clone https://github.com/[your_github_username]/cv32e40p` | ||
3. Create your feature branch: `git checkout -b <my_branch>.`<br> Please uniquify your branch name. See the [Git Cheats](https://github.com/openhwgroup/core-v-verif/blob/master/GitCheats.md) | ||
for a useful nominclature. | ||
4. Make your edits... | ||
5. Commit your changes: `git commit -m 'Add some feature' -s`<br>...take note of that **-s**, it's important! | ||
6. Push feature branch: `git push origin <my_branch>` | ||
7. From GitHub: submit a pull request |