Skip to content

Commit fbda8c0

Browse files
committed
feat(build): initial release
0 parents  commit fbda8c0

File tree

141 files changed

+19496
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+19496
-0
lines changed

.github/FUNDING.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#####################################################################
2+
# SPDX-License-Identifier: CC0-1.0
3+
# SPDX-FileType: OTHER
4+
# SPDX-FileCopyrightText: (c) 2022, OpenGateware authors and contributors
5+
#####################################################################
6+
custom: ["https://www.paypal.com/donate/?hosted_button_id=N7HXKEL8VJ9CN"]
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
#####################################################################
2+
# SPDX-License-Identifier: CC0-1.0
3+
# SPDX-FileType: OTHER
4+
# SPDX-FileCopyrightText: (c) 2022, OpenGateware authors and contributors
5+
#####################################################################
6+
name: "Bug Report"
7+
description: "Let us know about an unexpected error, a crash, or an incorrect behavior."
8+
title: 'Title of your Bug Report'
9+
labels:
10+
- bug
11+
assignees:
12+
- boogermann
13+
body:
14+
- type: markdown
15+
attributes:
16+
value: |
17+
Hi there,
18+
19+
Thank you for opening an issue. Please note that we try to keep the issue tracker reserved for bug reports.
20+
Make sure to [search for existing issues](https://github.com/opengateware/arcade-galaga/issues?q=label%3Abug) before filing a new one!
21+
22+
- type: input
23+
id: version
24+
attributes:
25+
label: Version (or build number)
26+
placeholder: "1.0.0"
27+
description: |
28+
You can find the version in the about dialog.
29+
30+
If you are not running the latest version, please try upgrading because your issue may have already been fixed.
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
id: steps
36+
attributes:
37+
label: Steps to reproduce
38+
description: |
39+
Please list the full steps required to reproduce the issue
40+
placeholder: |
41+
- Be precise
42+
- Include exact data used during testing for easy reference
43+
- The steps have to be in the exact order
44+
- Mention pre-requisites when applicable
45+
validations:
46+
required: false
47+
48+
- type: textarea
49+
id: expected_behavior
50+
attributes:
51+
label: Expected Behavior
52+
description: If you want to include screenshots, paste them into the markdown editor below or follow up with a separate comment.
53+
placeholder: What were you expecting?
54+
validations:
55+
required: false
56+
57+
- type: textarea
58+
id: actual_behavior
59+
attributes:
60+
label: Actual Behavior
61+
placeholder: What happened instead?
62+
validations:
63+
required: true
64+
65+
- type: textarea
66+
id: bug_context
67+
attributes:
68+
label: Additional Context
69+
description: |
70+
Are there anything atypical about your situation that we should know?
71+
validations:
72+
required: false
73+
74+
- type: input
75+
id: bug_firmware
76+
attributes:
77+
label: Opened Issues and Pull Requests
78+
placeholder: "#1234"
79+
description: |
80+
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example: #1234
81+
validations:
82+
required: false
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#####################################################################
2+
# SPDX-License-Identifier: CC0-1.0
3+
# SPDX-FileType: OTHER
4+
# SPDX-FileCopyrightText: (c) 2022, OpenGateware authors and contributors
5+
#####################################################################
6+
name: "Question"
7+
description: "Ask a question about the project."
8+
title: 'Title of your Question'
9+
labels:
10+
- question
11+
assignees:
12+
- boogermann
13+
body:
14+
- type: markdown
15+
attributes:
16+
value: |
17+
Hi there,
18+
19+
Please note that we try to keep the issue tracker reserved for bug reports.
20+
Make sure to [search for existing questions](https://github.com/opengateware/arcade-galaga/issues?q=label%3Aquestion) before filing a new one!
21+
22+
- type: textarea
23+
id: question
24+
attributes:
25+
label: Ask a question about Galaga Compatible Gateware IP Core
26+
placeholder: |
27+
Ask your question here! Please keep the questions related to the FPGA Core only.
28+
validations:
29+
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!-- SPDX-License-Identifier: CC0-1.0 -->
2+
<!-- SPDX-FileType: TEXT -->
3+
<!-- SPDX-FileCopyrightText: (c) 2022, OpenGateware authors and contributors -->
4+
5+
<!-- Thank you for your contribution! Please replace {Please write here} with your description -->
6+
7+
## What does this do / why do we need it?
8+
9+
<!--
10+
Please include a summary of the change and which issue is fixed.
11+
Please also include relevant motivation and context.
12+
List any dependencies that are required for this change.
13+
-->
14+
15+
{Please write here}
16+
17+
Fixes # (issue)
18+
19+
## Type of change
20+
21+
<!--
22+
Please delete options that are not relevant.
23+
-->
24+
25+
- [ ] Bug fix (non-breaking change which fixes an issue)
26+
- [ ] New feature (non-breaking change which adds functionality)
27+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
28+
- [ ] This change requires a documentation update
29+
- [ ] Coding style (indentation, etc)
30+
- [ ] {Please write custom change here}
31+
32+
## What should a reviewer look out for in this PR?
33+
34+
<!--
35+
Please describe the tests that you ran to verify your changes.
36+
Provide instructions so we can reproduce.
37+
Please also list any relevant details for your test configuration
38+
-->
39+
40+
{Please write here}
41+
42+
## Additional Comments (if any)
43+
44+
{Please write here}

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
db
2+
greybox_tmp
3+
hps_isw_handoff
4+
incremental_db
5+
output_files
6+
PLLJ_PLLSPE_INFO.txt
7+
simulation
8+
vip
9+
.qsys_edit
10+
*_netlist
11+
*_sim
12+
*.bak
13+
*.bsf
14+
*.cdf
15+
*.cmp
16+
*.csv
17+
*.done
18+
*.f
19+
*.pin
20+
*.pof
21+
*.ptf.*
22+
*.qar
23+
*.qarlog
24+
*.qdf
25+
*.qws
26+
*.rbf
27+
*.rbf_r
28+
*.rpt
29+
*.sip
30+
*.sld
31+
*.smsg
32+
*.sof
33+
*.sopc_builder
34+
*.sopcinfo
35+
*.spd
36+
*.summary
37+
*.txt
38+
*.xml
39+
*~
40+
**/.DS_Store
41+
build_id.mif
42+
build_id.v
43+
c5_pin_model_dump.txt
44+
cr_ie_info.json
45+
# Gateman directories and files
46+
!.gateman/*
47+
!gateware.json
48+
!/pkg/*
49+
/pkg/**/*.rom
50+
/pkg/**/*.zip
51+
# Editor directories and files
52+
.vscode/*
53+
!.vscode/extensions.json
54+
.idea
55+
*.suo
56+
*.ntvs*
57+
*.njsproj
58+
*.sln
59+
*.sw?
60+
61+
# Pocket directories and files
62+
!info.txt
63+
64+
# ROMS
65+
66+
67+
!checklist.sha1
68+
!info.txt

AUTHORS

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#####################################################################
2+
# SPDX-License-Identifier: CC0-1.0
3+
# SPDX-FileType: OTHER
4+
# SPDX-FileCopyrightText: (c) 2022, OpenGateware authors and contributors
5+
#####################################################################
6+
# Names should be added to this file as:
7+
# Name or Organization <email address>
8+
#
9+
# Core Team Members
10+
# Current project authors, maintainers and contributors.
11+
#####################################################################
12+
Marcus Andrade <marcus@raetro.org>
13+
14+
#####################################################################
15+
# Partial list of people who authored and/or contributed code in
16+
# other iterations or versions of the project.
17+
#
18+
# Thanks to all for their valuable
19+
# time/code/hints/fixes/discussions and contributions.
20+
#####################################################################
21+
Alan Steremberg <alan.steremberg@gmail.com>
22+
Alexey Melnikov <pour.garbage@gmail.com>
23+
Dar <darfpga@aol.fr>
24+
Jim Gregory <jim.a.gregory@gmail.com>
25+
John Scarfone <github@scarfone.net>
26+
Kuba Winnicki <git@blk.wine>
27+
MiSTer-X <MrX-8B@users.noreply.github.com>
28+
Peter Wendrich <pwsoft@syntiac.com>

0 commit comments

Comments
 (0)