Skip to content

Commit 1a553c9

Browse files
committed
Initial commit
0 parents  commit 1a553c9

File tree

105 files changed

+29163
-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.

105 files changed

+29163
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Space Race for Analogue Pocket
2+
3+
+ FPGA implementation of Arcade _Space Race_ (Atari, 1973) for Analogue Pocket.
4+
+ Based on Rev.F schematics.
5+
+ Ported from the [original MiSTer implementation.](https://github.com/MiSTer-devel/Arcade-SpaceRace_MiSTer)
6+
+ Multiplayer support via dock.
7+
8+
## Inputs
9+
```
10+
Coin : Start
11+
Start : Select
12+
Move forward : DPAD UP
13+
Move backward : DPAD DOWN
14+
```
15+
16+
## Known Issues
17+
18+
+ Sound is a bit harsh.
19+
+ Colors are a bit dim.
20+
+ DIP switches are not implemented.
21+
+ No platform image.
22+
23+
## License
24+
25+
GNU General Public License v2.0.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"audio": {
3+
"magic": "APF_VER_1"
4+
}
5+
}
1010 KB
Binary file not shown.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"core": {
3+
"magic": "APF_VER_1",
4+
"metadata": {
5+
"platform_ids": ["spacerace"],
6+
"shortname": "SpaceRace",
7+
"description": "Race in space!",
8+
"author": "ericlewis",
9+
"url": "https://github.com/ericlewis/openfpga-spacerace",
10+
"version": "0.0.1",
11+
"date_release": "2022-09-09"
12+
},
13+
"framework": {
14+
"target_product": "Analogue Pocket",
15+
"version_required": "1.1",
16+
"sleep_supported": false,
17+
"dock": {
18+
"supported": true,
19+
"analog_output": false
20+
},
21+
"hardware": {
22+
"link_port": false,
23+
"cartridge_adapter": -1
24+
}
25+
},
26+
"cores": [
27+
{
28+
"name": "default",
29+
"id": 0,
30+
"filename": "bitstream.rbf_r"
31+
}
32+
]
33+
}
34+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"data": {
3+
"magic": "APF_VER_1",
4+
"data_slots": []
5+
}
6+
}
2.53 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Arcade game Space Race (Atari, 1973) based on Rev.F schematics. Ported from MiSTer.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"input": {
3+
"magic": "APF_VER_1",
4+
"controllers": [
5+
{
6+
"type": "default",
7+
"mappings": [
8+
{
9+
"id": 2,
10+
"name": "P1 Start",
11+
"key": "pad_btn_select"
12+
},
13+
{
14+
"id": 3,
15+
"name": "Insert Coin",
16+
"key": "pad_btn_start"
17+
}
18+
]
19+
}
20+
]
21+
}
22+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"interact": {
3+
"magic": "APF_VER_1",
4+
"variables": [],
5+
"messages": []
6+
}
7+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"variants": {
3+
"magic": "APF_VER_1",
4+
"variant_list": []
5+
}
6+
}

0 commit comments

Comments
 (0)